diff --git a/FV3 b/FV3 index 10cd023128..65fec7d098 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 10cd0231282388da16d22a0aae22a1722b773720 +Subproject commit 65fec7d098994c509517bc1cfa4b7af3249001b8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index a71d6e6148..fab229196b 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240614 +export BL_DATE=20240624 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 9628cae560..e0b86d6bea 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -326,7 +326,7 @@ def generateStage(nodeLabel) { GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) - curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":["$machine-.*RT|$machine-.*BL"]}' + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/{$machine-RT,$machine-BL} ''' s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: [] currentBuild.result = 'FAILURE' diff --git a/tests/ci/Jenkinsfile.ort b/tests/ci/Jenkinsfile.ort new file mode 100644 index 0000000000..53e0a8823d --- /dev/null +++ b/tests/ci/Jenkinsfile.ort @@ -0,0 +1,107 @@ +pipeline { + agent none + stages { + stage('Run ORTs') { + agent { + label 'built-in' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("orion"))) { + env.CHOICE_NODE='orion' + } + else if ((label.matches("hera"))) { + env.CHOICE_NODE='hera' + } + else if ((label.matches("hercules"))) { + env.CHOICE_NODE='hercules' + } + else if ((label.matches("jet"))) { + env.CHOICE_NODE='jet' + } + else { + env.CHOICE_NODE='none' + } + } +// Why do I need another if..block, because it just works this way. + + if (CHOICE_NODE == 'orion') { + echo "Starting up orion ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + + } + else if (CHOICE_NODE == 'jet') { + echo "Starting up jet ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hercules') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hera') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else { + echo "${CHOICE_NODE} is NOT a platform, moving on..." + } + } + } + } + stage('Run ORT on Hera') { + agent { + label "hera" + } + environment { + ACCNR = 'epic' + NODE_PATH = '/scratch2/NAGAPE/epic/role.epic/' + } + steps { + + cleanWs() + checkout scm + sh ''' + git submodule update --init --recursive + cd tests/fv3_conf + sed 's/#SBATCH --time=.*/#SBATCH --time=02:00:00/g' -i fv3_slurm.IN_hera + cd .. + export machine=${NODE_NAME} + export PATH=$PATH:~/bin + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + pwd + sed "s|intel|gnu|g" -i opnReqTest + export ACCNR=epic + ./opnReqTest -n regional_control -a ${ACCNR} -c bit,dcp,thr + cd logs/ + cp OpnReqTests_regional_control_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n cpld_control_nowave_noaero_p8 -a ${ACCNR} -c dbg,rst + cd logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n control_p8 -a ${ACCNR} -c std,dbg,bit,mpi,rst,thr,dcp + cd logs/ + cp OpnReqTests_control_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp OpnReqTests_control_p8_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_regional_control_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Testing concluded...removing labels for $machine from $GIT_URL" + + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git add logs/OpnReqTests_control_p8_hera.log logs/OpnReqTests_regional_control_hera.log logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log + git commit -m "ORT Jobs Completed.\n\n\n on-behalf-of @ufs-community " + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + ''' + } + } + } +} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4c1c259488..ef44dfe4a9 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -624,6 +624,8 @@ export DO_UGWP_V1_W_GSLDRAG=.false. export DO_UGWP_V0_OROG_ONLY=.false. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. +export DO_GWD_OPT_PSL=.false. +export PSL_GWD_DX_FACTOR=6.0 export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index e228fd2ad0..32eb089d7d 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -23,7 +23,7 @@ if [ $WARM_START = .false. ]; then elif [ "$V2_SFC_FILE" = "true" ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. else - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. fi else mkdir INPUT RESTART diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index ec731d9f4a..816516d7a0 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -183,8 +183,8 @@ if [ $IAER = 1011 ]; then fi cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ls* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ss* ./INPUT if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index e2e42d9f1b..5d60b8c6ef 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Sun Jun 23 20:52:48 UTC 2024 +Sun Jul 7 19:56:59 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_250829/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 283.919660 - 0: The maximum resident set size (KB) = 1457776 + 0: The total amount of wall time = 280.646356 + 0: The maximum resident set size (KB) = 1444896 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_250829/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 985.020250 - 0: The maximum resident set size (KB) = 1430608 + 0: The total amount of wall time = 1003.437253 + 0: The maximum resident set size (KB) = 1430112 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_250829/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 250.531642 - 0: The maximum resident set size (KB) = 1436920 + 0: The total amount of wall time = 249.484393 + 0: The maximum resident set size (KB) = 1425876 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_250829/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 252.707984 - 0: The maximum resident set size (KB) = 1432848 + 0: The total amount of wall time = 250.029285 + 0: The maximum resident set size (KB) = 1435352 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_250829/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 248.087269 - 0: The maximum resident set size (KB) = 1448732 + 0: The total amount of wall time = 249.870001 + 0: The maximum resident set size (KB) = 1424956 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_250829/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 252.342367 - 0: The maximum resident set size (KB) = 1436924 + 0: The total amount of wall time = 247.121930 + 0: The maximum resident set size (KB) = 1438272 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_250829/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2387923/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 = 252.893297 - 0: The maximum resident set size (KB) = 1440100 + 0: The total amount of wall time = 251.892903 + 0: The maximum resident set size (KB) = 1423700 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sun Jun 23 21:58:39 UTC 2024 -Elapsed time: 01h:05m:51s. Have a nice day! +Sun Jul 7 21:02:25 UTC 2024 +Elapsed time: 01h:05m:27s. 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 77b8c62f25..2816bec404 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Tue Jun 25 13:58:12 UTC 2024 +Sun Jul 7 18:51:47 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1960064/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2035409/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 = 1377.718835 - 0: The maximum resident set size (KB) = 1521812 + 0: The total amount of wall time = 1352.292979 + 0: The maximum resident set size (KB) = 1527480 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_1960064/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2035409/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 = 679.251652 - 0: The maximum resident set size (KB) = 1474520 + 0: The total amount of wall time = 495.292747 + 0: The maximum resident set size (KB) = 1537276 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_1960064/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2035409/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 = 526.655552 - 0: The maximum resident set size (KB) = 1520272 + 0: The total amount of wall time = 431.140320 + 0: The maximum resident set size (KB) = 1523956 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jun 25 15:05:15 UTC 2024 -Elapsed time: 01h:07m:05s. Have a nice day! +Sun Jul 7 19:56:58 UTC 2024 +Elapsed time: 01h:05m:13s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index a4793559fe..8992f985a4 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Jun 24 14:34:56 UTC 2024 +Sun Jul 7 16:24:51 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1220577/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1322.701251 - 0: The maximum resident set size (KB) = 775988 + 0: The total amount of wall time = 1263.345950 + 0: The maximum resident set size (KB) = 776172 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1220577/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2174.813453 - 0: The maximum resident set size (KB) = 711188 + 0: The total amount of wall time = 2182.671673 + 0: The maximum resident set size (KB) = 733564 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_2622326/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1220577/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2247.219721 - 0: The maximum resident set size (KB) = 745224 + 0: The total amount of wall time = 2173.091543 + 0: The maximum resident set size (KB) = 746164 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_2622326/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1220577/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2249.680093 - 0: The maximum resident set size (KB) = 713548 + 0: The total amount of wall time = 2261.066848 + 0: The maximum resident set size (KB) = 724740 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jun 24 17:10:12 UTC 2024 -Elapsed time: 02h:35m:16s. Have a nice day! +Sun Jul 7 18:51:45 UTC 2024 +Elapsed time: 02h:26m:55s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index a99329a32a..2d2cf63d51 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,18 +1,18 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -63b2c97ab37b3fc31677e2899885a18e74d3b165 +552b40ba9030e83e8f1c6245970ad5b13769e707 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9733e45c9219eba27a7632ddc0de5b338cca6b5d CICE-interface/CICE (remotes/origin/feature/endofrun_restart) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) + 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) + 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,272 +36,273 @@ 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-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225297 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_196495 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:54] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:05, 02:35](3169 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:00, 03:23](1880 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:42, 03:04](1901 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [27:24, 03:05](1039 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:01, 02:40](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:43] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [50:00, 01:27](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:52] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [01:13, 02:59](1910 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 11:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [55:05, 01:30](3197 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [55:05, 02:19](3193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [46:02, 01:54](3128 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [55:05, 01:32](3216 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [46:02, 01:45](3147 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [55:05, 01:48](3429 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [55:05, 01:47](3190 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [55:06, 02:12](3140 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [55:05, 01:42](3196 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [55:05, 01:56](3177 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 10:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [55:03, 01:15](1892 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [55:03, 02:09](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:25, 10:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:04, 02:14](1953 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [56:04, 01:35](2924 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [56:04, 01:24](2927 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:36, 00:32](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:32, 17:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [47:57, 01:34](3196 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:59, 01:49](1891 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:12, 01:48](1071 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:07, 01:25](1864 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:29] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:54, 01:03](1913 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:26, 11:22] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [42:00, 00:31](630 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [42:00, 00:54](1533 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:17, 00:55](1530 MB) -PASS -- TEST 'control_latlon_intel' [40:48, 00:19](1536 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:18, 00:50](1531 MB) -PASS -- TEST 'control_c48_intel' [38:44, 01:02](1611 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [38:11, 01:07](733 MB) -PASS -- TEST 'control_c192_intel' [37:58, 01:03](1649 MB) -PASS -- TEST 'control_c384_intel' [33:57, 02:17](1959 MB) -PASS -- TEST 'control_c384gdas_intel' [33:53, 03:08](1150 MB) -PASS -- TEST 'control_stochy_intel' [31:49, 00:34](587 MB) -PASS -- TEST 'control_stochy_restart_intel' [27:18, 00:32](388 MB) -PASS -- TEST 'control_lndp_intel' [31:44, 00:31](585 MB) -PASS -- TEST 'control_iovr4_intel' [31:44, 00:51](582 MB) -PASS -- TEST 'control_iovr5_intel' [31:44, 00:51](583 MB) -PASS -- TEST 'control_p8_intel' [31:41, 02:45](1829 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:43, 02:24](1828 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:59, 02:01](1832 MB) -PASS -- TEST 'control_restart_p8_intel' [23:19, 02:28](976 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:49, 01:25](1822 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [22:08, 01:01](981 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:36, 01:30](1825 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:36, 01:47](1918 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:20, 00:48](1831 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [29:15, 02:29](1891 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:39, 02:27](1840 MB) -PASS -- TEST 'merra2_thompson_intel' [28:39, 02:49](1830 MB) -PASS -- TEST 'regional_control_intel' [28:29, 01:05](874 MB) -PASS -- TEST 'regional_restart_intel' [18:32, 00:21](873 MB) -PASS -- TEST 'regional_decomp_intel' [27:13, 00:15](874 MB) -PASS -- TEST 'regional_2threads_intel' [26:52, 00:31](956 MB) -PASS -- TEST 'regional_noquilt_intel' [26:09, 00:39](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [26:09, 00:37](873 MB) -PASS -- TEST 'regional_wofs_intel' [26:08, 00:24](1598 MB) - -PASS -- COMPILE 'ifi_intel' [09:24, 08:33] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [46:39, 00:24](874 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [46:39, 01:08](874 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [46:40, 01:08](967 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [45:30, 02:20](969 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:31, 01:05](1146 MB) -PASS -- TEST 'rap_decomp_intel' [45:30, 01:55](972 MB) -PASS -- TEST 'rap_2threads_intel' [45:30, 02:24](1052 MB) -PASS -- TEST 'rap_restart_intel' [24:31, 02:41](839 MB) -PASS -- TEST 'rap_sfcdiff_intel' [45:30, 01:48](969 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:30, 02:28](969 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [24:31, 02:25](838 MB) -PASS -- TEST 'hrrr_control_intel' [45:30, 03:18](962 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [45:30, 01:53](963 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [45:31, 02:48](1041 MB) -PASS -- TEST 'hrrr_control_restart_intel' [22:22, 01:16](796 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:30, 03:16](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:30, 01:04](1927 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:01, 00:51](1919 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [45:42, 01:07](930 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [45:42, 00:32](1626 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [21:39, 02:19](1828 MB) -PASS -- TEST 'regional_control_faster_intel' [21:20, 00:11](867 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [36:50, 05:40] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:09, 00:42](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:09, 00:52](1557 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:09, 01:05](762 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:09, 00:34](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:09, 01:04](1073 MB) -PASS -- TEST 'control_ras_debug_intel' [13:09, 00:56](772 MB) -PASS -- TEST 'control_diag_debug_intel' [13:09, 00:40](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [13:09, 00:30](1857 MB) -PASS -- TEST 'regional_debug_intel' [13:08, 00:36](942 MB) -PASS -- TEST 'rap_control_debug_intel' [13:09, 01:06](1150 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:09, 01:12](1140 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:09, 00:51](1145 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [13:09, 00:58](1145 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:09, 00:25](1147 MB) -PASS -- TEST 'rap_diag_debug_intel' [13:09, 00:47](1228 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:36, 01:03](1146 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:50, 00:26](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:55, 01:10](1150 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 00:18](1147 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:21, 00:58](1142 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 00:55](1146 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:52, 00:32](1143 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:30, 00:45](1138 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:08, 00:52](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:00, 01:16](1152 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:29, 02:54](1150 MB) - -PASS -- COMPILE 'wam_debug_intel' [34:48, 03:46] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:11, 00:59](1654 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [39:55, 08:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:28, 00:45](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:13, 02:08](848 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [02:10, 03:50](845 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:01, 02:23](915 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:58, 02:20](897 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:54, 03:23](845 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:53](747 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [51:31, 01:15](727 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:56, 12:40] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [00:49, 01:05](1055 MB) -PASS -- TEST 'conus13km_2threads_intel' [53:37, 00:36](1040 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [53:36, 00:28](938 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:15, 09:01] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:31](869 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [55:11, 03:50] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:31, 00:51](1023 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:31, 01:06](1022 MB) -PASS -- TEST 'conus13km_debug_intel' [50:31, 00:26](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [50:31, 01:15](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [50:32, 00:47](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [50:31, 00:24](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [55:11, 03:45] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [50:31, 00:54](1038 MB) - -PASS -- COMPILE 'hafsw_intel' [01:18, 10:29] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [44:00, 01:35](670 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [44:00, 00:50](1025 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:57, 01:42](715 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:55, 02:14](751 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:45, 02:07](908 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:22, 01:40](444 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:58, 02:01](463 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [37:00, 02:05](335 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:59, 02:22](403 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [35:55, 01:36](475 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [34:10, 01:36](474 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [34:03, 01:26](530 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:52, 01:19](367 MB) -PASS -- TEST 'gnv1_nested_intel' [33:49, 03:00](1668 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [53:09, 04:11] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:33, 01:26](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [03:20, 18:31] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:18, 01:06](580 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:52, 01:23](750 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [30:43, 10:05] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [44:30, 01:46](752 MB) - -PASS -- COMPILE 'hafs_all_intel' [28:42, 09:34] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [44:27, 01:50](708 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:27, 01:29](696 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [44:25, 01:05](903 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [25:41, 09:23] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [44:22, 01:00](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [32:48, 01:03](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [44:22, 00:56](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:22, 00:39](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [44:22, 00:59](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:22, 01:09](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [44:22, 00:12](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [44:22, 00:20](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [44:23, 01:17](648 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [44:23, 01:21](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [44:22, 00:31](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:22, 00:33](2021 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [44:22, 00:37](2026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [21:34, 09:20] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [44:25, 00:51](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:16, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [48:16, 00:36](271 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [48:16, 00:21](408 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [45:46, 00:24](408 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:24, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [31:50, 00:54](1886 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 10:39] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:07, 02:10](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [26:43, 02:52](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:00, 00:43](1005 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 04:46] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:51, 02:02](1894 MB) - -PASS -- COMPILE 'atmw_intel' [12:26, 09:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:14, 02:30](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [10:23, 09:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [23:54, 02:01](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [23:39, 01:29](2981 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:14, 02:15](2985 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [30:44, 03:49] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [13:43, 01:54](4523 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:56] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 02:07](3166 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:00] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [05:50, 02:36](1882 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:33, 02:44](1903 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [44:33, 02:32](1040 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:51, 01:45](1856 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:02] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [05:50, 01:28](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:01, 03:00](1909 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:54, 01:22](3196 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:54, 02:15](3200 MB) +PASS -- TEST 'cpld_restart_p8_intel' [01:57, 02:24](3127 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:54, 01:43](3217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [55:02, 01:19](3146 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:54, 02:02](3428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:54, 01:47](3186 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:55, 01:33](3141 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 01:51](3196 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:54, 01:59](3176 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:54, 01:56](1890 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:54, 02:10](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:54, 02:09](1948 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 10:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:53, 01:29](2927 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:53, 01:20](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:25, 00:51](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 18:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:45, 01:34](3196 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 15:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [06:49, 01:12](1892 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:05, 01:34](1050 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:44, 01:53](1865 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:32] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:43, 01:09](1918 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:14] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [58:46, 00:44](630 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [57:30, 01:18](1525 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:09, 00:49](1531 MB) +PASS -- TEST 'control_latlon_intel' [55:38, 01:07](1534 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [54:38, 01:03](1532 MB) +PASS -- TEST 'control_c48_intel' [54:37, 01:15](1609 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [54:33, 01:17](734 MB) +PASS -- TEST 'control_c192_intel' [54:00, 00:51](1644 MB) +PASS -- TEST 'control_c384_intel' [53:49, 02:06](1954 MB) +PASS -- TEST 'control_c384gdas_intel' [53:00, 03:01](1149 MB) +PASS -- TEST 'control_stochy_intel' [49:39, 00:38](587 MB) +PASS -- TEST 'control_stochy_restart_intel' [40:02, 01:15](392 MB) +PASS -- TEST 'control_lndp_intel' [47:35, 00:43](586 MB) +PASS -- TEST 'control_iovr4_intel' [46:44, 00:37](582 MB) +PASS -- TEST 'control_iovr5_intel' [46:38, 00:23](581 MB) +PASS -- TEST 'control_p8_intel' [46:16, 01:49](1828 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [46:16, 02:13](1829 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [46:16, 02:11](1831 MB) +PASS -- TEST 'control_restart_p8_intel' [35:03, 01:18](977 MB) +PASS -- TEST 'control_noqr_p8_intel' [45:37, 01:23](1823 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [34:57, 02:16](981 MB) +PASS -- TEST 'control_decomp_p8_intel' [45:36, 02:18](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [44:55, 02:17](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:24, 01:12](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:03, 02:11](1882 MB) +PASS -- TEST 'control_p8_mynn_intel' [42:02, 01:53](1834 MB) +PASS -- TEST 'merra2_thompson_intel' [41:42, 02:31](1837 MB) +PASS -- TEST 'regional_control_intel' [40:30, 00:18](878 MB) +PASS -- TEST 'regional_restart_intel' [33:37, 00:14](872 MB) +PASS -- TEST 'regional_decomp_intel' [40:18, 01:08](876 MB) +PASS -- TEST 'regional_2threads_intel' [40:03, 00:54](964 MB) +PASS -- TEST 'regional_noquilt_intel' [40:00, 00:19](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [39:22, 00:16](875 MB) +PASS -- TEST 'regional_wofs_intel' [39:16, 00:46](1602 MB) + +PASS -- COMPILE 'ifi_intel' [09:23, 08:31] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [02:30, 00:28](884 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [02:30, 01:00](883 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [02:31, 00:47](967 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:31] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [01:19, 01:40](970 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:20, 01:23](1148 MB) +PASS -- TEST 'rap_decomp_intel' [01:19, 02:13](972 MB) +PASS -- TEST 'rap_2threads_intel' [01:19, 02:10](1054 MB) +PASS -- TEST 'rap_restart_intel' [39:09, 02:32](839 MB) +PASS -- TEST 'rap_sfcdiff_intel' [01:19, 02:12](969 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [01:19, 02:12](969 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [38:02, 02:25](836 MB) +PASS -- TEST 'hrrr_control_intel' [01:19, 03:13](960 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [01:19, 03:09](964 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [01:20, 03:00](1044 MB) +PASS -- TEST 'hrrr_control_restart_intel' [35:31, 00:50](794 MB) +PASS -- TEST 'rrfs_v1beta_intel' [01:19, 02:19](964 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [01:19, 00:22](1930 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:18, 00:44](1920 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:51] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [01:33, 01:04](928 MB) +PASS -- TEST 'control_ras_intel' [01:33, 01:05](623 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [01:32, 01:12](1628 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:29, 16:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [35:06, 02:34](1828 MB) +PASS -- TEST 'regional_control_faster_intel' [35:02, 00:15](873 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:34, 05:47] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:27, 01:10](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:05, 01:22](1557 MB) +PASS -- TEST 'control_stochy_debug_intel' [32:37, 00:27](764 MB) +PASS -- TEST 'control_lndp_debug_intel' [32:37, 01:10](759 MB) +PASS -- TEST 'control_csawmg_debug_intel' [32:14, 00:28](1075 MB) +PASS -- TEST 'control_ras_debug_intel' [31:53, 00:48](769 MB) +PASS -- TEST 'control_diag_debug_intel' [31:48, 01:09](1615 MB) +PASS -- TEST 'control_debug_p8_intel' [31:34, 00:53](1856 MB) +PASS -- TEST 'regional_debug_intel' [30:48, 01:08](939 MB) +PASS -- TEST 'rap_control_debug_intel' [30:36, 01:06](1146 MB) +PASS -- TEST 'hrrr_control_debug_intel' [30:25, 01:13](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [30:09, 01:11](1152 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [30:08, 01:05](1149 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:38, 00:24](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [28:49, 01:22](1228 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:40, 01:10](1146 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [28:35, 01:02](1151 MB) +PASS -- TEST 'rap_lndp_debug_intel' [28:07, 00:55](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [28:07, 01:16](1146 MB) +PASS -- TEST 'rap_noah_debug_intel' [28:06, 01:03](1141 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [27:34, 01:08](1141 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:21, 00:37](1141 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [27:06, 00:58](1137 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [26:52, 01:08](1147 MB) +PASS -- TEST 'rap_flake_debug_intel' [26:44, 00:52](1151 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:27, 02:23](1149 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:33, 03:49] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:21, 01:01](1655 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:40, 08:53] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:42, 01:29](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:27, 02:13](851 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:15, 03:04](845 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:07, 02:20](908 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:06, 02:32](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:54, 02:28](845 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:56, 01:45](744 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:37, 01:15](726 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:13, 12:45] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:19, 00:57](1057 MB) +PASS -- TEST 'conus13km_2threads_intel' [38:47, 00:43](1040 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [38:46, 00:24](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [52:10, 09:01] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:21, 01:09](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:03, 03:57] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:30, 00:56](1025 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:30, 01:02](1025 MB) +PASS -- TEST 'conus13km_debug_intel' [12:32, 01:15](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 01:09](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:31, 00:21](1098 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:30, 00:38](1184 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [46:03, 03:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:29, 00:57](1039 MB) + +PASS -- COMPILE 'hafsw_intel' [54:11, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:11, 02:16](670 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 01:05](1017 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:09, 01:43](718 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:09, 01:30](747 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:10, 01:36](915 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 01:42](439 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:02, 01:52](463 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:02, 01:22](338 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:04, 03:02](404 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:00, 01:07](477 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:59, 00:49](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:01, 00:49](535 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 00:52](367 MB) +PASS -- TEST 'gnv1_nested_intel' [03:29, 03:33](1668 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [47:04, 04:10] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 01:01](627 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [54:11, 17:02] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [58:13, 00:49](580 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:07, 01:43](753 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [38:54, 10:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 01:24](752 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:53, 09:35] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:23, 02:02](710 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 01:57](698 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [07:21, 00:23](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [30:46, 09:01] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:23, 01:10](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:54, 00:18](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:23, 00:28](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 00:56](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:23, 01:12](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:23, 00:57](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:23, 01:04](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 01:11](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 01:28](649 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 01:24](635 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:23, 00:51](753 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:23, 01:03](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:23, 00:54](2020 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:16] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [01:33, 01:12](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:15, 00:37](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:15, 00:24](409 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:41, 00:58](411 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:24, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:28, 01:18](1883 MB) + +PASS -- COMPILE 'atml_intel' [11:24, 10:58] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:23, 02:37](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [55:52, 02:48](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [37:11, 00:57](992 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 04:32] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:00, 02:10](1894 MB) + +PASS -- COMPILE 'atmw_intel' [37:51, 09:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [30:32, 02:24](1859 MB) + +PASS -- COMPILE 'atmaero_intel' [36:50, 09:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [30:31, 01:49](3089 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 02:09](2972 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:31, 02:17](2988 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [31:47, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:33, 01:58](4524 MB) SYNOPSIS: -Starting Date/Time: 20240624 17:53:02 -Ending Date/Time: 20240624 20:17:16 -Total Time: 02h:24m:41s +Starting Date/Time: 20240701 18:37:11 +Ending Date/Time: 20240701 20:52:17 +Total Time: 02h:15m:32s Compiles Completed: 38/38 -Tests Completed: 178/178 +Tests Completed: 179/179 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 706525fd1d..35248c4a4f 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 +77c09929d475e0c62f43d7778d75d33583ea651d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 523f5a3ea2123bc713804aaf347da64b004afb9d FV3/atmos_cubed_sphere (201912_public_release-398-g523f5a3) + 97c3cc5e0e2bfbe67253609af97236636a8fc4c7 FV3/ccpp/framework (CPF_0.2.057) + c6dec90f4cd8e9f7ac5772cf51e9df6cd5f59cdd FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5268-gc6dec90f) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,295 +35,290 @@ 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-20240614 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_123133 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_15457 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:21, 21:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:34, 05:51](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:23, 23:13] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 14:35](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:55, 15:32](1951 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:54, 07:41](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:45, 16:28](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 23:03] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:03, 14:19](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:21, 11:30] ( 1530 warnings 1948 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_intel' [22:21, 21:00] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:31, 06:39](3220 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 06:32](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:24, 04:14](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:31, 06:34](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:10](3184 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:20, 06:21](3727 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:20, 06:19](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:11, 05:27](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:44, 06:31](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:54, 10:24](3805 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:09, 06:58](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:11, 11:11](4494 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:28, 07:38](4650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:16, 06:21](3211 MB) - -PASS -- COMPILE 's2sw_intel' [20:23, 19:44] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 04:52](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:34, 05:10](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:21, 11:26] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:57, 08:38](3290 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:21, 10:44] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:03](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:22, 15:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 04:56](1988 MB) - -PASS -- COMPILE 's2s_intel' [16:22, 15:26] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:02, 06:45](2930 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:07, 02:05](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:17](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:23, 25:27] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 06:14](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:22, 21:48] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:36, 14:49](1944 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:06, 07:52](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:59](1914 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:19, 10:47] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:39, 23:48](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:15, 15:09] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:40, 03:27](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:11, 02:29](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:31](1578 MB) -PASS -- TEST 'control_latlon_intel' [04:09, 02:27](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:15, 02:30](1577 MB) -PASS -- TEST 'control_c48_intel' [08:14, 06:14](1618 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:34, 05:13](733 MB) -PASS -- TEST 'control_c192_intel' [10:40, 08:40](1683 MB) -PASS -- TEST 'control_c384_intel' [14:47, 09:00](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [14:39, 07:10](1195 MB) -PASS -- TEST 'control_stochy_intel' [02:30, 01:32](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:53](442 MB) -PASS -- TEST 'control_lndp_intel' [03:37, 01:25](624 MB) -PASS -- TEST 'control_iovr4_intel' [03:39, 02:13](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:40, 02:08](625 MB) -PASS -- TEST 'control_p8_intel' [05:17, 03:37](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 03:13](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:11](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 02:09](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1865 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:18, 02:05](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:36](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:11](1959 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:44, 05:09](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 03:53](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:17](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [06:45, 03:39](1866 MB) -PASS -- TEST 'regional_control_intel' [07:08, 05:09](874 MB) -PASS -- TEST 'regional_restart_intel' [04:55, 03:08](873 MB) -PASS -- TEST 'regional_decomp_intel' [07:08, 05:29](874 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 05:11](1193 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:07](873 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:50, 05:19](881 MB) -PASS -- TEST 'regional_wofs_intel' [07:46, 05:48](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [14:14, 13:05] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:28, 06:18](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:11, 03:48](1199 MB) -PASS -- TEST 'rap_decomp_intel' [08:28, 06:30](1006 MB) -PASS -- TEST 'rap_2threads_intel' [08:28, 05:56](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:17, 03:23](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:46](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:32, 06:39](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:03, 05:00](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:10, 03:21](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 03:17](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:02](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:54](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:29, 06:11](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:58, 07:27](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [12:20, 11:06] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:49, 06:38](968 MB) -PASS -- TEST 'control_ras_intel' [04:24, 02:54](658 MB) - -PASS -- COMPILE 'wam_intel' [11:21, 10:39] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:39, 10:18](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:23, 16:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:25, 03:02](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [05:58, 04:39](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:14, 12:23] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:32](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:02, 02:30](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 02:50](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:35](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:48, 04:27](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [03:27, 02:35](803 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:37](1650 MB) -PASS -- TEST 'control_debug_p8_intel' [04:52, 03:25](1896 MB) -PASS -- TEST 'regional_debug_intel' [18:00, 16:16](917 MB) -PASS -- TEST 'rap_control_debug_intel' [05:31, 04:37](1183 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:38](1177 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:38, 04:36](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:41](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:44](1185 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:43, 04:52](1265 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:50](1179 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:59](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:34, 04:40](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:38, 04:40](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:31, 04:31](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:31](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:36](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:29, 04:40](1177 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:54, 07:57](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:17, 06:34] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:16, 12:13](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 03:32](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:18](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:43](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:59, 04:41](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 02:31](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 02:54](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:11](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 01:38](776 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:21, 12:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:34, 01:51](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:58](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:08](971 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 11:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:02, 03:39](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:41] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:29](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:30](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [15:44, 13:18](1142 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:40, 14:33](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:46, 07:45](1138 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:17](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:13, 06:46] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:38](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [18:16, 17:48] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:33, 04:33](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:56, 05:06](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:39, 06:31](778 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:56](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 12:17](816 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 05:00](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:33, 06:11](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:55, 02:37](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:09, 06:40](462 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:55, 03:28](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:06, 03:18](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 04:02](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:28](431 MB) -PASS -- TEST 'gnv1_nested_intel' [07:11, 04:11](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:13, 07:50] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:26](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:16, 26:16] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:09](628 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 07:25](687 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:14, 18:36] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:26](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:14, 15:39] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:46](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:30, 05:48](742 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:10](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:12] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:37, 02:28](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:31](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:19](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:22](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:26, 02:22](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:28, 02:30](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:19](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 05:38](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:59, 05:38](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:45, 03:50](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:50](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 05:48] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:08](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:15] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:26](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:35] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:06](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:02](449 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:47](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 12:53] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:55, 04:03](1926 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:34] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:41, 03:47](1899 MB) - -PASS -- COMPILE 'atml_intel' [15:19, 14:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:33, 06:56](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:34, 06:34](1884 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 03:48](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:12, 09:34] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 06:07](1920 MB) - -PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:25](1892 MB) - -PASS -- COMPILE 'atmaero_intel' [13:20, 11:55] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:32, 04:32](3123 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:41, 04:21](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 04:24](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:19, 07:33] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:49, 21:40](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:23, 21:33] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 05:29](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:23, 22:49] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:55, 14:35](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:55](1951 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:52](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 16:34](1889 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:23, 23:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:08, 14:18](1920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:20, 11:27] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [21:24, 20:54] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:27, 06:26](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:38, 06:18](3227 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:30, 03:53](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:27, 06:15](3255 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:41, 03:57](3183 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:10, 05:48](3729 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:10, 06:16](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:03, 05:15](3543 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:40, 06:09](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:33, 09:32](3890 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:43, 06:19](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:35, 10:17](4521 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:14, 06:56](4670 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:01, 05:59](3211 MB) + +PASS -- COMPILE 's2sw_intel' [20:23, 19:53] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:52](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 04:58](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:21, 11:17] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:26](3289 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:20, 10:38] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 06:06](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:22, 15:25] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:51, 04:55](1994 MB) + +PASS -- COMPILE 's2s_intel' [16:21, 15:21] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:18, 06:42](2946 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:14, 02:21](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:29](2340 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:23, 25:09] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:20, 06:09](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:21, 21:49] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:52, 14:45](1934 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:30, 08:02](1112 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:09, 16:58](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:14, 11:30] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 23:35](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:16, 15:04] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:42, 03:26](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:03, 02:24](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:13, 02:27](1572 MB) +PASS -- TEST 'control_latlon_intel' [09:58, 02:24](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:06, 02:25](1568 MB) +PASS -- TEST 'control_c48_intel' [14:07, 06:11](1622 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 05:15](735 MB) +PASS -- TEST 'control_c192_intel' [18:02, 08:41](1692 MB) +PASS -- TEST 'control_c384_intel' [20:44, 08:39](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [16:27, 07:05](1200 MB) +PASS -- TEST 'control_stochy_intel' [05:39, 01:25](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:52](440 MB) +PASS -- TEST 'control_lndp_intel' [04:37, 01:21](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:39, 02:05](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:05](621 MB) +PASS -- TEST 'control_p8_intel' [05:30, 03:07](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:11](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:59](1877 MB) +PASS -- TEST 'control_restart_p8_intel' [04:26, 02:03](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:27, 03:10](1866 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 02:05](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:25, 03:17](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:25, 03:04](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:09, 05:07](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 04:00](1931 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:38, 03:09](1872 MB) +PASS -- TEST 'merra2_thompson_intel' [05:27, 03:28](1871 MB) +PASS -- TEST 'regional_control_intel' [07:01, 04:54](882 MB) +PASS -- TEST 'regional_restart_intel' [05:06, 02:55](878 MB) +PASS -- TEST 'regional_decomp_intel' [07:01, 05:07](875 MB) +PASS -- TEST 'regional_noquilt_intel' [06:54, 04:54](1199 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:55](881 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:55, 04:59](874 MB) +PASS -- TEST 'regional_wofs_intel' [06:56, 05:38](1606 MB) + +PASS -- COMPILE 'rrfs_intel' [14:15, 12:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:26, 06:06](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:49, 03:46](1198 MB) +PASS -- TEST 'rap_decomp_intel' [08:26, 06:21](1009 MB) +PASS -- TEST 'rap_2threads_intel' [07:26, 05:38](1104 MB) +PASS -- TEST 'rap_restart_intel' [05:22, 03:12](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:21](1009 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:14, 04:34](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:18, 03:17](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:18, 02:46](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:46](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:26, 05:57](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:01, 07:21](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 07:05](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:15, 10:58] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:08, 06:23](968 MB) +PASS -- TEST 'control_ras_intel' [04:41, 02:53](660 MB) + +PASS -- COMPILE 'wam_intel' [11:14, 10:32] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:14, 09:54](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:16, 17:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:30, 02:58](1862 MB) +PASS -- TEST 'regional_control_faster_intel' [05:58, 04:44](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:15, 12:15] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:02, 02:33](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:27](1601 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:51](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:35, 02:33](800 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:00, 04:27](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [03:36, 02:40](809 MB) +PASS -- TEST 'control_diag_debug_intel' [04:50, 02:34](1657 MB) +PASS -- TEST 'control_debug_p8_intel' [05:08, 03:14](1897 MB) +PASS -- TEST 'regional_debug_intel' [18:06, 16:14](918 MB) +PASS -- TEST 'rap_control_debug_intel' [06:33, 04:40](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:49, 04:34](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:49, 04:37](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:51, 04:46](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:49, 04:40](1181 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:07, 04:56](1266 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:40, 04:48](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:35, 04:42](1184 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:39](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:40](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:39, 04:34](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:35, 04:40](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 07:35](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:40, 04:43](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 05:31](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:42, 04:42](1175 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:53](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:29] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:09, 12:37](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 11:01] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:30](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:58, 05:07](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:46](882 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 04:47](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:26](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 02:55](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:06, 03:52](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:42, 01:33](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:21, 15:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 01:54](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:21, 00:58](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:06](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:19, 10:54] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:02, 03:38](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:47] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:31](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:23](1054 MB) +PASS -- TEST 'conus13km_debug_intel' [16:05, 13:17](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:20](823 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 07:45](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:49](1207 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 06:40] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:43](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [18:21, 17:50] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:50, 04:34](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:04](1071 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:59, 06:28](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:55, 11:00](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:31, 12:35](816 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:07, 04:39](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 05:43](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:03, 02:16](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:41, 06:12](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:04, 03:17](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:39, 03:04](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:35, 03:47](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:13](427 MB) +PASS -- TEST 'gnv1_nested_intel' [08:34, 04:00](1722 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:14, 07:56] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:18, 12:03](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [30:23, 26:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:00, 07:10](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:52, 07:15](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:20, 18:57] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:25, 05:23](681 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:14, 15:35] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:26, 05:36](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 05:38](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:06, 16:37](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:21, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:44, 02:29](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:44, 01:54](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:42, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:35, 02:23](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 02:23](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:28](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:36, 02:29](752 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:43, 05:49](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:56, 06:06](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:28](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:51, 03:52](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 04:16](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 05:50] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 05:08](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:31](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:08, 01:10](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:42, 01:05](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:59, 01:03](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:08, 04:27](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:20, 11:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:56, 03:48](1912 MB) + +PASS -- COMPILE 'atml_intel' [15:20, 14:49] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:06, 06:48](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:13, 06:41](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 03:35](1040 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:21, 09:32] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:55, 06:44](1931 MB) + +PASS -- COMPILE 'atmw_intel' [14:19, 13:51] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:43, 02:24](1894 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:10] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:03, 04:17](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:48, 04:16](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 04:20](3013 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:18, 07:26] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:12, 22:00](4536 MB) SYNOPSIS: -Starting Date/Time: 20240623 14:48:16 -Ending Date/Time: 20240623 16:24:20 -Total Time: 01h:36m:52s +Starting Date/Time: 20240709 06:45:50 +Ending Date/Time: 20240709 08:26:12 +Total Time: 01h:41m:27s Compiles Completed: 41/41 -Tests Completed: 183/184 -Failed Tests: -* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2324/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log +Tests Completed: 183/183 NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +A file 'test_changes.list' was generated but is empty. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: FAILURE +Result: SUCCESS ====END OF DERECHO REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log old mode 100755 new mode 100644 index 002f9a8369..459b98af72 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 +77c09929d475e0c62f43d7778d75d33583ea651d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 523f5a3ea2123bc713804aaf347da64b004afb9d FV3/atmos_cubed_sphere (201912_public_release-398-g523f5a3) + 97c3cc5e0e2bfbe67253609af97236636a8fc4c7 FV3/ccpp/framework (CPF_0.2.057) + c6dec90f4cd8e9f7ac5772cf51e9df6cd5f59cdd FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5268-gc6dec90f) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ 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-20240614 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_25320 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_236657 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:16, 19:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:57, 07:12](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:19, 23:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 13:34](1926 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:17, 14:25](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:19, 06:38](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:21, 14:57](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:16, 25:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:45, 13:44](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:14, 13:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:21, 24:49](1938 MB) - -PASS -- COMPILE 's2swa_intel' [19:15, 18:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:46, 08:00](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:01, 08:19](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:30, 04:55](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:41, 07:50](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 05:19](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:37, 06:33](3452 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:31, 07:44](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:48, 06:53](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:52](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:59, 10:46](3434 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:14, 07:18](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:12, 12:51](4189 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:27, 09:04](4343 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:36](3205 MB) - -PASS -- COMPILE 's2sw_intel' [19:15, 18:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:39, 05:04](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:27](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:14, 13:13] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:24, 10:07](3268 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:13, 12:20] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:23, 06:04](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 05:43](1990 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 16:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:49, 07:05](2913 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 02:05](2913 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:02, 01:13](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:12, 24:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:27, 08:11](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:18, 22:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:29, 14:54](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:24, 07:37](1090 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:19, 18:06](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:47] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:19, 26:29](1939 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:46, 03:50](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:21, 03:29](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:19, 03:43](1570 MB) -PASS -- TEST 'control_latlon_intel' [10:14, 03:12](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:20, 03:16](1572 MB) -PASS -- TEST 'control_c48_intel' [13:39, 06:38](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:28, 05:39](720 MB) -PASS -- TEST 'control_c192_intel' [17:24, 09:56](1681 MB) -PASS -- TEST 'control_c384_intel' [26:37, 18:10](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [24:23, 14:11](1181 MB) -PASS -- TEST 'control_stochy_intel' [03:47, 02:10](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:32, 01:12](426 MB) -PASS -- TEST 'control_lndp_intel' [03:47, 02:35](622 MB) -PASS -- TEST 'control_iovr4_intel' [06:48, 03:18](620 MB) -PASS -- TEST 'control_iovr5_intel' [06:47, 02:53](620 MB) -PASS -- TEST 'control_p8_intel' [09:36, 03:12](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:54, 03:29](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:36, 03:42](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [06:51, 02:13](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:33, 03:37](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 01:42](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:29, 03:31](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:25, 02:48](1954 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:45, 05:33](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 04:31](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:57, 03:27](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [07:55, 03:47](1866 MB) -PASS -- TEST 'regional_control_intel' [06:38, 04:48](859 MB) -PASS -- TEST 'regional_restart_intel' [04:31, 02:35](861 MB) -PASS -- TEST 'regional_decomp_intel' [07:39, 05:04](860 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 03:07](999 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 04:50](1183 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 04:57](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:00](866 MB) -PASS -- TEST 'regional_wofs_intel' [07:36, 06:00](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [13:12, 12:45] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:53, 06:54](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 04:00](1186 MB) -PASS -- TEST 'rap_decomp_intel' [10:55, 07:19](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:56, 06:08](1099 MB) -PASS -- TEST 'rap_restart_intel' [04:57, 03:25](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:00, 06:55](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:23, 07:10](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:22](878 MB) -PASS -- TEST 'hrrr_control_intel' [08:00, 03:47](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:51, 03:59](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:52, 03:09](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:59](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:55, 06:53](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 08:10](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 07:59](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 12:00] -PASS -- TEST 'control_csawmg_intel' [09:33, 06:41](965 MB) -PASS -- TEST 'control_ras_intel' [06:26, 03:39](657 MB) - -PASS -- COMPILE 'wam_intel' [13:12, 12:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:58, 11:32](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:14, 03:06](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 04:31](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:54] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:49, 03:00](1577 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:41, 03:13](1579 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:25, 03:22](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:26, 03:12](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:35, 04:51](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [05:31, 03:22](792 MB) -PASS -- TEST 'control_diag_debug_intel' [05:41, 03:44](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [05:38, 03:41](1878 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 17:15](887 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 05:33](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:56](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:12](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:00](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 04:57](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:14](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:28, 05:06](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:06](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:14](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:29, 05:02](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:27, 05:02](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:58](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:28, 04:53](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:55](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:30, 05:00](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:01, 08:29](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:16, 07:18] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:07, 13:34](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:47](1051 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 05:55](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 03:03](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 05:02](953 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:49, 02:42](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:35](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:19](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:31, 02:15](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:07, 02:07](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:32, 01:20](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:36](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 13:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:16](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 09:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:01](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:51](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:32](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:04](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:09](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:38, 14:05](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:45] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:12](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [15:18, 15:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:13, 05:25](704 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:47](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:45](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:22, 13:25](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 06:24](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:32](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:07, 03:36](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:13, 07:59](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:51, 03:50](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 03:37](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:46](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](403 MB) -PASS -- TEST 'gnv1_nested_intel' [07:46, 04:59](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:12, 09:51] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:18](591 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:15, 24:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:10, 08:10](611 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:10, 07:54](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:15, 17:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:07, 06:29](785 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:12, 22:27] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 06:50](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 23:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:33, 13:33](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 14:54](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:53, 06:42](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:18, 15:00](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 23:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:44, 13:26](1914 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:12, 15:59] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:40, 24:14](1936 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 19:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:09, 07:39](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:34, 07:26](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 05:01](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:19, 07:42](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:57](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:12](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:56, 07:34](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:42, 06:30](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:18, 07:28](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:32, 10:13](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:16, 07:25](3608 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:19, 12:47](4203 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:56](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:59, 07:30](3208 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 19:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:07, 05:19](1937 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:16, 05:56](1997 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 16:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:17, 09:25](3269 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:11, 15:34] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:44](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 05:12](1997 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:59, 06:30](2928 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:58, 01:56](2933 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:26, 01:07](2330 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:13, 26:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:35, 07:59](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 23:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 15:01](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:23, 07:27](1107 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:24, 17:06](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:10, 13:38] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:40, 26:55](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:38, 03:42](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 03:00](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 03:02](1570 MB) +PASS -- TEST 'control_latlon_intel' [04:16, 02:56](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 03:01](1572 MB) +PASS -- TEST 'control_c48_intel' [09:12, 06:39](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:03, 05:40](719 MB) +PASS -- TEST 'control_c192_intel' [11:24, 09:52](1682 MB) +PASS -- TEST 'control_c384_intel' [19:42, 18:06](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [16:28, 14:03](1181 MB) +PASS -- TEST 'control_stochy_intel' [02:36, 01:56](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:01](426 MB) +PASS -- TEST 'control_lndp_intel' [02:43, 01:55](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:45, 02:40](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:36, 02:38](620 MB) +PASS -- TEST 'control_p8_intel' [05:46, 03:11](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:51, 03:15](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:43, 03:11](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [03:25, 01:46](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:37, 03:07](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:47](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:33, 03:10](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:38, 02:46](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:48, 05:17](1861 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:07](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:16](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [05:33, 03:39](1865 MB) +PASS -- TEST 'regional_control_intel' [05:38, 04:57](858 MB) +PASS -- TEST 'regional_restart_intel' [03:32, 02:33](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:34, 05:08](860 MB) +PASS -- TEST 'regional_2threads_intel' [04:24, 03:00](1000 MB) +PASS -- TEST 'regional_noquilt_intel' [05:38, 04:50](1184 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:42, 04:55](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 04:44](858 MB) +PASS -- TEST 'regional_wofs_intel' [06:36, 05:59](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 14:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:56, 06:44](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:06, 04:05](1188 MB) +PASS -- TEST 'rap_decomp_intel' [07:53, 06:58](1009 MB) +PASS -- TEST 'rap_2threads_intel' [07:51, 06:07](1102 MB) +PASS -- TEST 'rap_restart_intel' [05:32, 03:28](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:54, 06:48](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:50, 07:01](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 04:52](879 MB) +PASS -- TEST 'hrrr_control_intel' [04:59, 03:48](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:59, 03:49](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:55, 03:08](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:29, 01:56](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:44, 06:46](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 07:55](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:09, 07:53](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 13:27] +PASS -- TEST 'control_csawmg_intel' [07:38, 06:34](964 MB) +PASS -- TEST 'control_ras_intel' [04:30, 03:20](656 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 13:03] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:00, 11:18](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:03, 03:08](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [05:34, 04:38](858 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:38] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 03:06](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:51](1578 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:07](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:50](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:14](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:49](792 MB) +PASS -- TEST 'control_diag_debug_intel' [03:40, 02:57](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [03:36, 03:06](1878 MB) +PASS -- TEST 'regional_debug_intel' [17:38, 16:35](888 MB) +PASS -- TEST 'rap_control_debug_intel' [05:28, 05:02](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:55](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 04:56](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:58](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:56](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:14](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 05:07](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:29, 05:31](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:29, 05:18](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 05:19](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 05:06](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:45, 04:57](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:05, 08:24](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:46, 04:53](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:44, 06:07](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:38, 04:57](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 08:40](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:11, 10:44] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:06, 13:12](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 14:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:08, 03:52](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:01, 06:00](883 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:17](882 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 05:16](944 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:54, 02:44](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:52, 03:25](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:08](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:34, 01:41](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 16:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:09, 02:03](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:13](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:21](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:00, 04:17](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 09:50] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:56](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:28, 04:44](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [15:02, 14:05](1124 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:58, 13:56](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 08:11](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:51, 13:53](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:18] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:54](1070 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 16:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:21](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:30, 04:32](1062 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:30](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:13, 11:30](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 12:39](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 05:23](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:30, 06:43](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:54](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:40, 07:55](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:48](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:05, 03:35](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:03, 04:41](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 02:06](403 MB) +PASS -- TEST 'gnv1_nested_intel' [07:51, 05:31](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 11:00] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:03, 12:45](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:11, 23:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:11, 07:45](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:15, 07:48](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:17, 06:02](783 MB) PASS -- COMPILE 'hafs_all_intel' [16:13, 15:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:17](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:34](729 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:14, 20:06](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:13, 14:23] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:37](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:50](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:30](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:24, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:28](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:56, 06:04](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 05:55](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 03:02](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 04:49](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:37](2014 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:43] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:28](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:16, 14:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:23, 02:54](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 03:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:46, 02:28](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 02:15](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:43, 00:57](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 14:08] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:21, 04:44](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 13:09] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:29, 04:34](1912 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 16:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:27, 07:15](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:57, 06:35](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:54, 05:37](1043 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:13, 09:49] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:19, 06:06](1916 MB) - -PASS -- COMPILE 'atmw_intel' [15:14, 14:54] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:15](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 13:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:07, 05:36](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:25](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 06:18](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:46] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 18:12](4487 MB) +PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:33](739 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:17, 06:04](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:10, 20:08](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:32] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:23, 02:36](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 01:34](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:30](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:27, 02:29](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:29](636 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:25, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:26](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 05:58](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:57](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:21, 02:36](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:40](2015 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:27, 04:41](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 07:58] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:52, 05:28](741 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:10, 12:20] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:14, 03:30] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:39](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:25](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:43, 01:00](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 15:21] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:45, 03:52](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:17, 13:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:48, 03:56](1911 MB) + +PASS -- COMPILE 'atml_intel' [16:18, 15:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:27, 07:58](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:27, 08:03](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 04:33](1046 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 09:47] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:19, 06:09](1916 MB) + +PASS -- COMPILE 'atmw_intel' [14:10, 13:51] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:11](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:11, 06:33](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:10, 06:55](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:00, 07:08](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 09:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:31, 18:20](4488 MB) SYNOPSIS: -Starting Date/Time: 20240624 00:16:24 -Ending Date/Time: 20240624 01:55:23 -Total Time: 01h:43m:39s +Starting Date/Time: 20240709 18:09:19 +Ending Date/Time: 20240709 19:39:48 +Total Time: 01h:31m:25s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ef5c788760..5115c8e5d5 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 +3344c3e6be519c08f98fe39e342985e7c821e0e9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,379 +24,442 @@ 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-20240614 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3387121 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /scratch2/NAGAPE/epic/Jong.Kim/stmp2/Jong.Kim/FV3_RT/rt_2823285 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nems +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:25, 05:40](3313 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:14, 16:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:02, 17:13](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:18, 18:11](2149 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:09, 08:24](1231 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:30](1862 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 16:58](1968 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:15, 05:05] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:01, 22:59](1918 MB) + +PASS -- COMPILE 's2swa_intel' [14:14, 13:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:23, 05:56](3354 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:30, 05:54](3351 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:24, 03:31](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:23, 05:57](3371 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:37](3269 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:18, 05:37](3629 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:18, 05:56](3342 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:21, 04:50](3215 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:29, 05:56](3356 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:23, 10:22](3531 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:08, 06:28](3641 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:35, 09:27](4304 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:26, 06:03](4389 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:27](3314 MB) + +PASS -- COMPILE 's2sw_intel' [13:13, 12:27] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:01, 04:52](2001 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:10, 04:31](2059 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 05:07] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:37, 08:27](3366 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:46] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:23, 05:47](2006 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:52] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:05, 04:15](2047 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 11:51] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:43, 09:02](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:42](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:35](2495 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:22] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:09, 05:49](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:56] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 17:33](2015 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:18](1290 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:02, 19:55](1922 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:04] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:06, 25:27](1951 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:22](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 03:00](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:56](1607 MB) +PASS -- TEST 'control_latlon_intel' [03:39, 02:59](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 02:58](1598 MB) +PASS -- TEST 'control_c48_intel' [08:44, 07:39](1763 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:24](863 MB) +PASS -- TEST 'control_c192_intel' [11:54, 10:45](1736 MB) +PASS -- TEST 'control_c384_intel' [13:03, 10:26](2014 MB) +PASS -- TEST 'control_c384gdas_intel' [12:00, 08:24](1403 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:37](665 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:59](507 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:33](663 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:28](650 MB) +PASS -- TEST 'control_p8_intel' [04:01, 03:08](1902 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:02, 03:05](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:03](1898 MB) +PASS -- TEST 'control_restart_p8_intel' [02:46, 01:44](1135 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:53, 03:09](1893 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:45](1162 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:10](1880 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:34](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 04:10](1958 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:51, 03:07](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [04:49, 03:21](1899 MB) +PASS -- TEST 'regional_control_intel' [06:35, 05:21](1094 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:55](1095 MB) +PASS -- TEST 'regional_decomp_intel' [06:33, 05:38](1089 MB) +PASS -- TEST 'regional_2threads_intel' [04:37, 03:27](1100 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 05:19](1401 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:19](1105 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:19](1106 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1910 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 11:01] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:40, 07:48](1110 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:08, 04:15](1305 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 08:07](1036 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1189 MB) +PASS -- TEST 'rap_restart_intel' [04:50, 04:04](1102 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:39, 07:48](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 08:08](1044 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:03, 05:50](1135 MB) +PASS -- TEST 'hrrr_control_intel' [04:40, 03:57](1045 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:06](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:32, 03:40](1108 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:08](1001 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:37](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:24](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 09:05](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:43] +PASS -- TEST 'control_csawmg_intel' [07:39, 06:07](1028 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:14](745 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:25] +PASS -- TEST 'control_csawmg_gnu' [09:50, 08:21](744 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:42] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:48, 10:50](1671 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:36] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:48, 02:45](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [05:36, 04:50](1099 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:03] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:52, 02:39](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:55, 02:37](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:29, 02:57](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:29, 02:41](814 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:49, 04:16](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [03:29, 02:49](807 MB) +PASS -- TEST 'control_diag_debug_intel' [03:59, 02:39](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [03:52, 02:58](1905 MB) +PASS -- TEST 'regional_debug_intel' [17:50, 17:02](1095 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 04:50](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:34, 04:41](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:34, 04:49](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 04:50](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 04:50](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:50, 05:21](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:08](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:56](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:32, 05:03](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:32, 04:52](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:43](1202 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:52](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 07:49](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:46](1194 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 06:05](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:52](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:19](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:53] +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:19](732 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:49] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:44, 13:40](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:11, 03:52](1171 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:37, 06:27](1047 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](997 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:07](1095 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 03:12](970 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:36](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:42, 04:52](1029 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:50](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:05, 02:06](1201 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:45, 00:57](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:13](1113 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:10](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:27, 04:54](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:47](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [15:52, 14:14](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:31](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:48, 08:04](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:29](1290 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:51] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:55](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 12:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:17, 05:06](741 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 06:00](1122 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:53](829 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:26](865 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:16](883 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:27](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:45](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:50](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:26, 07:13](474 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:42, 03:44](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:32](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:07](595 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:16](412 MB) +PASS -- TEST 'gnv1_nested_intel' [05:40, 04:03](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:17] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:54, 12:46](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:46](650 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:07, 08:54](748 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 12:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:37](698 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 11:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:21, 06:24](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:21, 06:33](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 16:31](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 03:05](1114 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:56](1078 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:44](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:37](1034 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:37](1029 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:36](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:39](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:34](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:29](1085 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 06:07](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1167 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 04:00](2437 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:56](2441 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:11] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:14](1101 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:39](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:46](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:47](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:32](324 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 11:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:07, 03:40](1991 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:10, 10:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:04, 03:43](1961 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:33](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:01, 04:19](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:30](1087 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:56] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:56, 05:42](1883 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 11:06] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:48](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 11:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:59, 04:08](3209 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:55, 04:53](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:59](3113 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:48] ( 884 warnings 6 remarks ) +FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:44] +PASS -- TEST 'control_c48_gnu' [12:41, 11:20](1537 MB) +PASS -- TEST 'control_stochy_gnu' [04:21, 03:22](504 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:42](509 MB) +PASS -- TEST 'control_p8_gnu' [05:58, 04:43](1446 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:51, 04:38](1461 MB) +PASS -- TEST 'control_flake_gnu' [11:24, 10:18](543 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:11] +PASS -- TEST 'rap_control_gnu' [11:34, 10:44](814 MB) +PASS -- TEST 'rap_decomp_gnu' [11:31, 10:58](851 MB) +PASS -- TEST 'rap_2threads_gnu' [10:38, 09:47](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:31](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 10:54](812 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 10:56](861 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:03](575 MB) +PASS -- TEST 'hrrr_control_gnu' [06:32, 05:30](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:29](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 04:58](922 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:37](845 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:25, 02:49](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:48](657 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:38](810 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:23] +PASS -- TEST 'control_diag_debug_gnu' [02:45, 01:37](1278 MB) +PASS -- TEST 'regional_debug_gnu' [12:37, 11:24](762 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:22, 02:40](822 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 02:32](824 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 02:36](829 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:39](828 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:42, 02:46](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 04:15](827 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:40](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:34](821 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:40](491 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:48](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:39, 01:47](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:36](825 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:53](863 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:34, 04:23](823 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:16](706 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:33, 04:54](710 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:32, 08:31](757 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:28](744 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 05:04](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:54, 06:59](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:31](541 MB) +PASS -- TEST 'conus13km_control_gnu' [04:54, 03:08](879 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:43, 05:57](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:48](552 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:50] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:40](730 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:25] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [06:13, 02:31](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:20, 02:32](711 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:48, 06:56](895 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:36, 07:06](574 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:07, 07:41](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:42, 06:54](958 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:39](736 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_gnu' [, ] + +PASS -- COMPILE 's2s_gnu' [17:13, 16:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:00, 08:37](1535 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:13] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:26] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:47](1464 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2sw_pdlib_debug_gnu' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:51](684 MB) + +SYNOPSIS: +Starting Date/Time: 20240709 12:01:57 +Ending Date/Time: 20240709 14:36:38 +Total Time: 02h:35m:33s +Compiles Completed: 55/57 +Tests Completed: 243/245 +Failed Compiles: +* COMPILE s2swa_gnu: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2290/tests/logs/log_hera/compile_s2swa_gnu.log +* COMPILE s2sw_pdlib_debug_gnu: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2290/tests/logs/log_hera/compile_s2sw_pdlib_debug_gnu.log +Failed Tests: +* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch2/NAGAPE/epic/Jong.Kim/stmp2/Jong.Kim/FV3_RT/rt_2823285/regional_atmaq_debug_intel/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +77c09929d475e0c62f43d7778d75d33583ea651d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2337535 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:44](3314 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:15](1984 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2158 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:10](1255 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:17](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 17:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:42, 17:02](1969 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:22] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:03, 23:02](1919 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:33] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:09, 05:59](3347 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 06:01](3319 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:24, 03:46](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:10, 05:58](3364 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:23, 03:59](3241 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:08, 05:44](3609 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:08, 06:00](3344 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:12, 05:04](3206 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3337 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:24, 10:28](3519 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:51, 06:29](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:20, 10:13](4283 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:31, 06:15](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:47](3325 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:45] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:55](1991 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:38](2014 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:59, 08:33](3387 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:04] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:56](2006 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:33](2049 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 12:09] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:38](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 02:51](3078 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:40, 01:39](2507 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:12, 21:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:54](3355 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:02] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 17:34](2003 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:13, 08:17](1268 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:09, 19:50](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:33] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:55, 24:59](1913 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:27](705 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:56](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 03:01](1606 MB) -PASS -- TEST 'control_latlon_intel' [03:34, 02:58](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:48, 02:57](1599 MB) -PASS -- TEST 'control_c48_intel' [08:43, 07:39](1748 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](873 MB) -PASS -- TEST 'control_c192_intel' [11:58, 10:34](1753 MB) -PASS -- TEST 'control_c384_intel' [13:04, 10:28](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [11:47, 08:06](1400 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:38](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](509 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:35](659 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:27](658 MB) -PASS -- TEST 'control_iovr5_intel' [03:27, 02:28](655 MB) -PASS -- TEST 'control_p8_intel' [05:02, 03:08](1900 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:10](1883 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 03:00](1904 MB) -PASS -- TEST 'control_restart_p8_intel' [02:46, 01:45](1139 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:46, 03:06](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:46](1156 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:48, 03:12](1883 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:52, 02:57](1986 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:24](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:07](1965 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:57, 03:06](1902 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 03:22](1905 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:21](1097 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 02:56](1091 MB) -PASS -- TEST 'regional_decomp_intel' [06:37, 05:46](1096 MB) -PASS -- TEST 'regional_2threads_intel' [04:36, 03:26](1095 MB) -PASS -- TEST 'regional_noquilt_intel' [06:41, 05:17](1405 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:18](1108 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:22](1102 MB) -PASS -- TEST 'regional_wofs_intel' [07:39, 06:46](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:45](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 04:09](1299 MB) -PASS -- TEST 'rap_decomp_intel' [09:41, 08:08](1042 MB) -PASS -- TEST 'rap_2threads_intel' [08:43, 07:17](1186 MB) -PASS -- TEST 'rap_restart_intel' [04:50, 04:02](1113 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 08:13](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:49](1133 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 04:02](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:43, 04:09](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:41](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:37, 02:10](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:40](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:19](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:09](2061 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 11:08] -PASS -- TEST 'control_csawmg_intel' [08:40, 06:12](1025 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:18](749 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] -PASS -- TEST 'control_csawmg_gnu' [09:34, 08:16](749 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:44] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:48, 11:06](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:13, 18:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1896 MB) -PASS -- TEST 'regional_control_faster_intel' [05:35, 04:50](1096 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:24] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:39](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:41](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:01](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:46](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:35, 04:14](1137 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:49](829 MB) -PASS -- TEST 'control_diag_debug_intel' [03:43, 02:45](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [03:42, 03:01](1909 MB) -PASS -- TEST 'regional_debug_intel' [18:38, 17:06](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [05:24, 05:00](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:47](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:50](1212 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:55](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:38, 05:04](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:59](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:05](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:01](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:46](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 05:03](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:51](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 08:06](1208 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:44](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:00](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:26](1210 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:32] -PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:23](736 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 04:05] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:50, 13:28](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:57](1163 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:30](1047 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:36, 03:29](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:11](1101 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 03:13](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:38](935 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:50](1025 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:56](926 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 15:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:10](1204 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:49, 00:54](1129 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:14](1113 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:13](989 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:48](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:44](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [15:54, 14:29](1237 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:41](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:19](1167 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:35](1309 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 04:56](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:11](746 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 06:35](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 07:10](830 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:41](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:32, 15:28](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:36](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:49](522 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:44](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:11, 07:32](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 03:54](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:33](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:11](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:13](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:36, 04:03](1742 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:34] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 12:54](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:12, 20:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 08:52](656 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:06, 08:52](749 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:36](740 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 11:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:49](833 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:35](810 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:03](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:47] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:44](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:43](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:42](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:42](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:43](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:39](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:42](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 05:59](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:14](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:42](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:52](2447 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:57](2500 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:34] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:13](1091 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:33] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:55](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 01:00](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:35](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:41] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 03:46](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:38](1962 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:24](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:58, 04:23](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:28](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:05] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:45](1878 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 11:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:58](1921 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 11:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:09](3190 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:55](3102 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:07](3109 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:18] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 21:25](4450 MB) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:25] -PASS -- TEST 'control_c48_gnu' [12:37, 11:21](1538 MB) -PASS -- TEST 'control_stochy_gnu' [04:23, 03:21](500 MB) -PASS -- TEST 'control_ras_gnu' [05:22, 04:47](510 MB) -PASS -- TEST 'control_p8_gnu' [05:52, 04:49](1456 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 04:52](1463 MB) -PASS -- TEST 'control_flake_gnu' [10:22, 10:05](542 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] -PASS -- TEST 'rap_control_gnu' [11:35, 10:48](817 MB) -PASS -- TEST 'rap_decomp_gnu' [11:33, 10:58](854 MB) -PASS -- TEST 'rap_2threads_gnu' [10:38, 09:52](943 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:32](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:36, 10:50](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 10:54](854 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:50, 08:05](580 MB) -PASS -- TEST 'hrrr_control_gnu' [06:33, 05:32](815 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:33](839 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](933 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:38](849 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:51](567 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:46](659 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:53, 10:33](810 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:42] -PASS -- TEST 'control_diag_debug_gnu' [02:43, 01:40](1276 MB) -PASS -- TEST 'regional_debug_gnu' [12:36, 11:24](724 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](829 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](822 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:41](827 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:50](907 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:07](825 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:42](822 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:32](458 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:47](454 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:47](1431 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:36](826 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:52](832 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:33, 04:25](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:43] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:24](706 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:33, 05:00](711 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 08:40](760 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:29](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:02](708 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:41, 07:03](558 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:32](540 MB) -PASS -- TEST 'conus13km_control_gnu' [04:51, 03:10](878 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:44, 06:07](884 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:49](554 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 10:59] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:40](731 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:36](714 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:26](715 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:08](896 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:43, 07:05](586 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:29](891 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:44, 07:07](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:40] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](734 MB) - -PASS -- COMPILE 's2swa_gnu' [17:13, 16:37] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:02, 07:33](1533 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:19] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:18] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:59, 23:23](1445 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:06] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:54, 14:46](1456 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:17] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 03:01](686 MB) +PASS -- COMPILE 'atmaq_debug_intel' [21:14, 04:05] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [51:35, 48:33](4479 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:31] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:38] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:04, 14:06](1468 MB) SYNOPSIS: -Starting Date/Time: 20240624 04:15:54 -Ending Date/Time: 20240624 05:52:37 -Total Time: 01h:36m:57s -Compiles Completed: 57/57 -Tests Completed: 245/245 +Starting Date/Time: 20240709 18:07:18 +Ending Date/Time: 20240709 20:43:34 +Total Time: 02h:36m:24s +Compiles Completed: 3/3 +Tests Completed: 2/2 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 d33100f865..5c7a36d9be 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 +3344c3e6be519c08f98fe39e342985e7c821e0e9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 523f5a3ea2123bc713804aaf347da64b004afb9d FV3/atmos_cubed_sphere (201912_public_release-398-g523f5a3) + 97c3cc5e0e2bfbe67253609af97236636a8fc4c7 FV3/ccpp/framework (CPF_0.2.057) + c6dec90f4cd8e9f7ac5772cf51e9df6cd5f59cdd FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5268-gc6dec90f) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,379 +35,378 @@ 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-20240614 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2188681 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_902011 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [10:53, 10:53] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:25, 07:40](2128 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:37, 16:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:14, 13:22](2007 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:03, 14:11](2292 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:11, 06:37](1308 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:55, 15:05](1926 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:34, 18:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:09](1993 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:34, 06:34] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:10, 20:19](1962 MB) - -PASS -- COMPILE 's2swa_intel' [11:45, 11:45] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:39, 07:50](2183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 07:41](2186 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:54, 04:20](1978 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 07:38](2203 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:15, 04:21](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:14, 08:44](2542 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:07, 07:34](2181 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:57, 06:24](2091 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:30, 07:44](2181 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:29, 15:17](2979 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:57, 05:43](2923 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [11:48, 08:34](3788 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:59, 05:15](3623 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:10](2158 MB) - -PASS -- COMPILE 's2sw_intel' [11:34, 11:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:50, 07:09](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:51, 04:09](2079 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:35, 06:35] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:36, 06:52](2212 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:41, 06:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:18, 04:43](2030 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:41, 09:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:03](2073 MB) - -PASS -- COMPILE 's2s_intel' [09:17, 09:17] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:47, 07:20](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:04](3060 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:50, 06:23](2512 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:15, 15:15] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:05, 07:25](2178 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 16:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:32, 13:58](2047 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:15, 06:42](1389 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:59, 15:23](1949 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:32, 03:32] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:23, 21:52](2010 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:25, 08:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:01, 02:52](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 02:25](1611 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:51, 02:29](1610 MB) -PASS -- TEST 'control_latlon_intel' [02:41, 02:25](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:50, 02:27](1610 MB) -PASS -- TEST 'control_c48_intel' [16:36, 16:18](1748 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:57, 05:46](857 MB) -PASS -- TEST 'control_c192_intel' [09:25, 09:00](1765 MB) -PASS -- TEST 'control_c384_intel' [09:51, 08:57](2048 MB) -PASS -- TEST 'control_c384gdas_intel' [08:11, 06:53](1516 MB) -PASS -- TEST 'control_stochy_intel' [01:29, 01:22](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:02, 00:51](545 MB) -PASS -- TEST 'control_lndp_intel' [01:23, 01:16](667 MB) -PASS -- TEST 'control_iovr4_intel' [02:15, 02:02](660 MB) -PASS -- TEST 'control_iovr5_intel' [02:13, 02:05](672 MB) -PASS -- TEST 'control_p8_intel' [03:09, 02:38](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:05, 02:35](1902 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:05, 02:33](1913 MB) -PASS -- TEST 'control_restart_p8_intel' [02:02, 01:33](1160 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:03, 02:35](1893 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [01:57, 01:29](1204 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:03, 02:40](1893 MB) -PASS -- TEST 'control_2threads_p8_intel' [02:53, 02:25](2002 MB) -PASS -- TEST 'control_p8_lndp_intel' [04:46, 04:31](1895 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:02, 03:29](1972 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:03](1916 MB) -PASS -- TEST 'merra2_thompson_intel' [03:34, 02:55](1915 MB) -PASS -- TEST 'regional_control_intel' [04:47, 04:33](1202 MB) -PASS -- TEST 'regional_restart_intel' [02:49, 02:34](1178 MB) -PASS -- TEST 'regional_decomp_intel' [04:59, 04:45](1202 MB) -PASS -- TEST 'regional_2threads_intel' [03:11, 02:55](1167 MB) -PASS -- TEST 'regional_noquilt_intel' [04:43, 04:26](1524 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:52, 04:34](1206 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:38](1199 MB) -PASS -- TEST 'regional_wofs_intel' [06:21, 06:04](2098 MB) - -PASS -- COMPILE 'rrfs_intel' [07:46, 07:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:11, 06:38](1209 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:54, 03:22](1406 MB) -PASS -- TEST 'rap_decomp_intel' [07:21, 06:46](1153 MB) -PASS -- TEST 'rap_2threads_intel' [06:50, 06:18](1384 MB) -PASS -- TEST 'rap_restart_intel' [03:54, 03:28](1144 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:03, 06:31](1195 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:26, 06:54](1130 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:36, 04:59](1182 MB) -PASS -- TEST 'hrrr_control_intel' [03:52, 03:20](1084 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:02, 03:28](1044 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:34, 03:00](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:09, 01:52](1029 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:55, 06:16](1181 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:48, 07:41](2009 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:30, 07:23](2201 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:10] -PASS -- TEST 'control_csawmg_intel' [05:42, 05:27](1075 MB) -PASS -- TEST 'control_ras_intel' [02:53, 02:48](815 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:56, 03:56] -PASS -- TEST 'control_csawmg_gnu' [07:03, 06:44](1073 MB) - -PASS -- COMPILE 'wam_intel' [07:08, 07:08] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:57, 09:38](1677 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:47, 13:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:05, 02:22](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [04:30, 04:10](1205 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:22, 05:22] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:23, 02:05](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:25, 02:05](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:35, 02:26](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:20, 02:11](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:37, 03:25](1152 MB) -PASS -- TEST 'control_ras_debug_intel' [02:19, 02:13](850 MB) -PASS -- TEST 'control_diag_debug_intel' [02:39, 02:16](1682 MB) -PASS -- TEST 'control_debug_p8_intel' [02:47, 02:25](1919 MB) -PASS -- TEST 'regional_debug_intel' [14:34, 14:15](1137 MB) -PASS -- TEST 'rap_control_debug_intel' [04:01, 03:53](1226 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:54, 03:48](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:00, 03:53](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [03:59, 03:52](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:07, 03:58](1215 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:22, 04:07](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:11, 04:01](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:07, 04:01](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:06, 03:58](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:05, 03:58](1214 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:07, 03:57](1220 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:02, 03:56](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:26, 06:21](1216 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:00, 03:53](1220 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:59, 04:47](1220 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:03, 03:57](1222 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 06:42](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:55, 04:55] -PASS -- TEST 'control_csawmg_debug_gnu' [02:06, 01:52](1055 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:30, 03:30] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:13, 07:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:41, 03:11](1282 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:59, 05:29](1153 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:33, 02:51](1051 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:32, 04:58](1292 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:14, 02:35](1041 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:41, 03:01](994 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:36, 04:11](1106 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:40, 01:34](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:34, 09:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:02, 01:39](1316 MB) -PASS -- TEST 'conus13km_2threads_intel' [00:59, 00:41](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:20, 01:01](1153 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:14, 07:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:00, 03:43](1083 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:08, 03:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:04, 03:53](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:55, 03:48](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [12:02, 11:39](1328 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:09, 11:46](999 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:52, 06:37](1246 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:52, 11:33](1404 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:00, 03:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:02, 03:56](1163 MB) - -PASS -- COMPILE 'hafsw_intel' [11:43, 11:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:02, 05:14](869 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:10, 04:55](1272 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:15, 06:16](932 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 13:49](976 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:53, 14:49](991 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:55, 05:19](609 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:46](628 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:57, 02:28](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:47, 07:23](548 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:12, 03:44](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:04, 03:34](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:16, 04:40](673 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](456 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:27, 03:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:40, 11:11](646 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:09, 15:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:55, 16:20](773 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:37, 15:48](847 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:18, 10:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:09, 09:24](790 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:27, 10:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:09, 05:19](959 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:13, 05:22](922 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:04, 16:31](1338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:24, 05:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:09, 02:05](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 03:52](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:07, 02:02](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:10, 02:04](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:11, 02:07](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:09, 02:06](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:12, 02:07](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:06, 02:02](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:21, 04:48](1162 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:19, 04:46](1149 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:08, 02:06](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:03, 02:58](2432 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:04, 03:00](2332 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:14, 03:14] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:06, 05:01](1078 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:29, 06:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:09, 02:06](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:58, 00:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:04, 00:48](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:54, 00:43](583 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:43, 00:29](586 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:40, 07:40] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:43, 03:13](2023 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:07, 08:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:46, 03:09](1993 MB) - -PASS -- COMPILE 'atml_intel' [09:13, 09:13] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 05:23](1904 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:13, 05:25](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:21, 03:00](1147 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:33, 04:33] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:34, 04:46](1908 MB) - -PASS -- COMPILE 'atmw_intel' [09:55, 09:55] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:12, 01:40](1966 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 08:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:14, 03:37](2034 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:49, 04:11](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:45, 04:15](1825 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:03, 04:03] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:33, 16:27](4581 MB) - -PASS -- COMPILE 'atm_gnu' [04:18, 04:18] -PASS -- TEST 'control_c48_gnu' [09:55, 09:31](1554 MB) -PASS -- TEST 'control_stochy_gnu' [02:27, 02:16](730 MB) -PASS -- TEST 'control_ras_gnu' [03:51, 03:43](733 MB) -PASS -- TEST 'control_p8_gnu' [04:19, 03:47](1733 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:02, 03:34](1760 MB) -PASS -- TEST 'control_flake_gnu' [04:31, 04:20](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:36, 04:32] -PASS -- TEST 'rap_control_gnu' [08:13, 07:35](1088 MB) -PASS -- TEST 'rap_decomp_gnu' [08:22, 07:50](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [07:45, 07:10](1147 MB) -PASS -- TEST 'rap_restart_gnu' [04:21, 03:53](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:18, 07:40](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:15, 07:41](1088 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:27, 05:45](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:27, 03:54](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:20, 03:54](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [13:52, 13:14](1037 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:56](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:05](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:03](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:19, 07:37](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:21, 07:21] -PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:12](1633 MB) -PASS -- TEST 'regional_debug_gnu' [06:46, 06:26](1114 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:10, 02:00](1102 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [01:58, 01:50](1092 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:06, 01:58](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:00, 01:53](1099 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:03](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:06, 03:00](1101 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:01, 01:53](1099 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:57](1099 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:12, 01:06](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:23, 01:17](726 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:37, 01:20](1750 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:01, 01:54](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:13, 02:07](1112 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:43, 03:11](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:27, 03:27] -PASS -- TEST 'control_wam_debug_gnu' [05:28, 05:04](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:51, 04:44] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:44, 07:12](977 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:16, 03:40](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:07, 06:37](971 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:04, 03:22](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:25, 03:46](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [05:54, 05:19](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:00, 01:54](862 MB) -PASS -- TEST 'conus13km_control_gnu' [02:47, 02:26](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:19, 01:01](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:41, 01:23](942 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:26, 10:26] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:35, 04:18](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:33, 07:33] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [01:59, 01:54](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:03, 01:52](971 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:40, 05:18](1287 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [05:45, 05:29](975 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:31, 03:12](1192 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:35, 05:16](1354 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:08, 07:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:08, 01:58](1007 MB) - -PASS -- COMPILE 's2swa_gnu' [15:09, 15:09] -PASS -- TEST 'cpld_control_p8_gnu' [07:08, 06:23](4919 MB) - -PASS -- COMPILE 's2s_gnu' [14:22, 14:22] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:20, 04:42](2720 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:25, 04:20] -PASS -- TEST 'cpld_debug_p8_gnu' [04:17, 03:46](4925 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:01, 17:01] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:15, 25:37](2873 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:54, 03:54] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:35, 12:04](2887 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:34, 15:34] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [15:17, 15:13](760 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:07, 08:58](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 17:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:06, 13:16](1997 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:19, 14:00](2322 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:12, 06:29](1321 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:07, 14:53](1920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:11, 15:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:30, 13:03](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:10, 04:09] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:12, 20:22](1969 MB) + +PASS -- COMPILE 's2swa_intel' [12:10, 11:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:59, 08:44](2185 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:57, 08:33](2178 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:17](1991 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:59, 08:36](2213 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 04:23](1747 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:59, 10:09](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:48, 08:30](2175 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:55, 07:15](2092 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:58, 08:30](2184 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:41, 16:34](2978 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:05, 06:53](2937 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:01, 10:07](3814 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 06:22](3642 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:51, 06:01](2156 MB) + +PASS -- COMPILE 's2sw_intel' [10:10, 09:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:39, 08:02](2034 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:49, 03:59](2095 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:48, 07:52](2204 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:39, 05:44](2041 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 08:08] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:46, 05:05](2092 MB) + +PASS -- COMPILE 's2s_intel' [08:10, 08:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:38, 07:05](3104 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:38, 03:02](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:34, 01:10](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:10, 16:39] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:05, 07:23](2194 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 16:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:39, 13:45](2038 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:58, 06:50](1379 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:42, 15:16](1972 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:04] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:51, 22:05](2002 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:10, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:16, 02:46](701 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 02:26](1615 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:32, 02:28](1625 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 02:24](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:32](1605 MB) +PASS -- TEST 'control_c48_intel' [07:30, 07:00](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:24, 05:46](857 MB) +PASS -- TEST 'control_c192_intel' [09:36, 08:50](1767 MB) +PASS -- TEST 'control_c384_intel' [10:17, 08:49](2055 MB) +PASS -- TEST 'control_c384gdas_intel' [08:55, 06:59](1509 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:28, 00:50](549 MB) +PASS -- TEST 'control_lndp_intel' [02:18, 01:21](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:21, 02:02](660 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:03](666 MB) +PASS -- TEST 'control_p8_intel' [03:48, 02:37](1906 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:49, 02:37](1913 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:49, 02:34](1907 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:41](1155 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:40, 02:33](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:29](1202 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:16](1904 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:47, 03:44](1997 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:37, 05:18](1901 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:56, 03:55](1989 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:53, 03:09](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [06:52, 04:00](1916 MB) +PASS -- TEST 'regional_control_intel' [07:26, 05:34](1200 MB) +PASS -- TEST 'regional_restart_intel' [03:27, 02:45](1179 MB) +PASS -- TEST 'regional_decomp_intel' [07:25, 05:49](1199 MB) +PASS -- TEST 'regional_2threads_intel' [03:24, 02:57](1162 MB) +PASS -- TEST 'regional_noquilt_intel' [06:33, 04:34](1527 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:36](1180 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:48](1204 MB) +PASS -- TEST 'regional_wofs_intel' [07:26, 05:40](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 07:54] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:41, 07:24](1221 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:23](1411 MB) +PASS -- TEST 'rap_decomp_intel' [08:41, 07:55](1144 MB) +PASS -- TEST 'rap_2threads_intel' [07:50, 06:46](1372 MB) +PASS -- TEST 'rap_restart_intel' [05:52, 03:50](1149 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:40, 06:39](1186 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:40, 06:57](1126 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:02](1199 MB) +PASS -- TEST 'hrrr_control_intel' [04:41, 03:26](1074 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:41, 03:31](1043 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:04](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:49](1024 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:25](1182 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:55](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:37](2173 MB) + +PASS -- COMPILE 'csawmg_intel' [09:10, 07:37] +PASS -- TEST 'control_csawmg_intel' [06:23, 05:29](1046 MB) +PASS -- TEST 'control_ras_intel' [03:16, 02:48](821 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:14] +PASS -- TEST 'control_csawmg_gnu' [09:31, 06:49](1073 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 07:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:34, 09:34](1683 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:12, 15:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:20](1918 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 04:24](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:54] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 02:12](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:39, 02:07](1618 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:39](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:15](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:25, 04:10](1143 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:28](847 MB) +PASS -- TEST 'control_diag_debug_intel' [03:29, 02:16](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:27, 03:15](1918 MB) +PASS -- TEST 'regional_debug_intel' [16:28, 15:35](1144 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 04:14](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:19, 04:03](1215 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:07](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:02](1219 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 04:04](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:19](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:09](1226 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:13](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 04:14](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:59](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:57](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 04:02](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 06:45](1226 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 04:03](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:57](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:18](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 07:14](1225 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 05:50] +PASS -- TEST 'control_csawmg_debug_gnu' [02:29, 01:53](1059 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:50] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:29](1270 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:22](1140 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:50](1030 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:44, 04:57](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 02:36](1034 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:58](973 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:50, 04:00](1095 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:40, 01:36](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 12:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:36, 01:42](1297 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:33, 00:50](1204 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:28, 01:04](1152 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 03:43](1083 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:18] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:03](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:59](1105 MB) +PASS -- TEST 'conus13km_debug_intel' [13:37, 12:20](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:21](1008 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:31, 07:34](1249 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:29, 12:11](1408 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:06](1148 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 09:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:23](875 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:16](1275 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:20](980 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:07, 14:35](1001 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:14, 15:11](1004 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:44, 05:30](605 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:21, 06:59](623 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:39, 02:36](441 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:55, 07:30](539 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:41, 03:54](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:37, 03:44](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 04:48](680 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:27, 01:09](455 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:28] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:42, 11:35](643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:47, 15:59](766 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:52, 16:17](814 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 11:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:53, 10:23](826 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:15, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:03, 05:43](948 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 05:47](937 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:47, 16:34](1336 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:57] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:09](1150 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:16, 01:21](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:04](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:04](1007 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:07](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:10](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:15](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:06](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:54](1158 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1161 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:08](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 02:59](2390 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:01](2381 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:04](1065 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:07](1143 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:51](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:49](573 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:36](586 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 07:53] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:46, 04:21](2018 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 08:02] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 04:18](1997 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:54] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 05:55](1902 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 05:49](1901 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:33, 03:18](1161 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:48, 04:59](1918 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:45] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:43, 02:35](1948 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:47] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:43, 04:28](2032 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:42, 04:15](1812 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:19](1822 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 03:02] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 16:26](4577 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:24] +PASS -- TEST 'control_c48_gnu' [11:36, 09:32](1554 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:16](727 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 03:39](731 MB) +PASS -- TEST 'control_p8_gnu' [05:46, 04:02](1758 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:34, 04:23](1761 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:20](824 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 04:07] +PASS -- TEST 'rap_control_gnu' [09:34, 07:54](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [08:43, 07:57](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [08:31, 07:17](1122 MB) +PASS -- TEST 'rap_restart_gnu' [04:49, 03:55](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:37, 07:52](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:36, 07:58](1084 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:47, 05:48](886 MB) +PASS -- TEST 'hrrr_control_gnu' [04:46, 04:01](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:30, 04:09](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:40, 03:36](1023 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:39, 04:00](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:13](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:27, 02:12](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:48, 07:54](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:16] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:14](1629 MB) +PASS -- TEST 'regional_debug_gnu' [07:25, 06:41](1119 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 02:08](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 02:05](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:07](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:26, 02:01](1109 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:26, 02:17](1274 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:17](1102 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:08](1111 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:03](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:09](734 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:18](730 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:29](1714 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:17, 02:01](1104 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:15](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:45, 03:23](1109 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:52] +PASS -- TEST 'control_wam_debug_gnu' [05:28, 05:01](1574 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:30](966 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:53, 03:55](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 07:00](971 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:29](875 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:33, 03:55](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:38, 05:27](863 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:17, 02:02](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:35, 02:30](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:26, 01:05](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:29](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 10:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:31, 04:20](988 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:08](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:57](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:28, 05:33](1286 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:30, 05:59](977 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:21](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:34](1363 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:39] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 01:56](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 17:24] + +PASS -- COMPILE 's2s_gnu' [16:12, 15:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:50, 04:47](3094 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:34] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:23] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:49, 25:51](2918 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:34] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:43, 11:58](3045 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 16:08] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:16](766 MB) SYNOPSIS: -Starting Date/Time: 20240623 19:58:04 -Ending Date/Time: 20240624 00:04:55 -Total Time: 04h:07m:36s +Starting Date/Time: 20240708 15:03:09 +Ending Date/Time: 20240708 16:38:50 +Total Time: 01h:36m:12s Compiles Completed: 57/57 -Tests Completed: 246/246 +Tests Completed: 244/244 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 5bd507f722..ad15ed90b7 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,18 +1,18 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 +552b40ba9030e83e8f1c6245970ad5b13769e707 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) + 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) + 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,253 +36,253 @@ 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-20240614 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1959700 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_358144 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [40:56, 40:56] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:24, 08:02](1998 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:02, 49:02] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:11, 22:31](1892 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:21, 23:32](2011 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 11:06](1128 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:39, 25:00](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:53, 48:53] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:53, 22:09](1861 MB) - -PASS -- COMPILE 's2swa_intel' [40:55, 40:55] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:44, 08:28](2039 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:59, 08:32](2035 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:20, 06:36](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:03, 08:33](2066 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:09, 05:29](1721 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:07](2301 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 08:51](2034 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:24, 08:02](1989 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:25, 08:33](2052 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:37, 08:09](2028 MB) - -PASS -- COMPILE 's2sw_intel' [39:04, 39:04] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 06:45](1881 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:13, 06:55](1961 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:54, 05:54] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:51, 11:31](2055 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:40, 05:40] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:15, 08:13](1911 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:19, 35:19] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 06:43](1959 MB) - -PASS -- COMPILE 's2s_intel' [35:17, 35:17] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:53, 13:12](3040 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:37, 03:51](3033 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:33, 02:05](2459 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:23] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:44](2043 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:55, 48:55] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:15, 22:06](1913 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:30, 14:13](1136 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:50, 27:34](1872 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:15, 06:15] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:29, 33:16](1910 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:37, 38:37] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [04:49, 04:33](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:32, 03:56](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 04:03](1558 MB) -PASS -- TEST 'control_latlon_intel' [04:38, 04:05](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 04:10](1546 MB) -PASS -- TEST 'control_c48_intel' [12:39, 12:04](1732 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:36, 10:18](848 MB) -PASS -- TEST 'control_c192_intel' [15:01, 14:15](1679 MB) -PASS -- TEST 'control_c384_intel' [19:45, 18:02](1826 MB) -PASS -- TEST 'control_c384gdas_intel' [15:52, 13:25](1001 MB) -PASS -- TEST 'control_stochy_intel' [02:33, 02:15](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:43, 01:19](436 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 02:09](606 MB) -PASS -- TEST 'control_iovr4_intel' [03:46, 03:23](597 MB) -PASS -- TEST 'control_iovr5_intel' [03:36, 03:21](600 MB) -PASS -- TEST 'control_p8_intel' [05:43, 04:42](1836 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:48, 04:45](1851 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:45, 04:35](1843 MB) -PASS -- TEST 'control_restart_p8_intel' [03:45, 02:50](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:34, 04:32](1832 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 02:58](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:03, 05:04](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:17, 04:25](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:45, 08:08](1825 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 05:54](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:59, 04:52](1850 MB) -PASS -- TEST 'merra2_thompson_intel' [06:35, 05:15](1847 MB) -PASS -- TEST 'regional_control_intel' [09:44, 09:11](1009 MB) -PASS -- TEST 'regional_restart_intel' [05:57, 05:26](1018 MB) -PASS -- TEST 'regional_decomp_intel' [10:19, 09:43](1016 MB) -PASS -- TEST 'regional_2threads_intel' [08:16, 07:42](996 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 09:09](1014 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:39, 09:08](1013 MB) - -PASS -- COMPILE 'rrfs_intel' [35:20, 35:20] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [11:52, 10:42](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:43, 05:42](1219 MB) -PASS -- TEST 'rap_decomp_intel' [12:09, 11:00](988 MB) -PASS -- TEST 'rap_2threads_intel' [12:07, 11:10](1089 MB) -PASS -- TEST 'rap_restart_intel' [07:11, 06:01](998 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:43, 11:35](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:55, 11:44](983 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:05, 07:59](995 MB) -PASS -- TEST 'hrrr_control_intel' [07:02, 05:36](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:15, 06:06](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 05:31](1053 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 02:52](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:40](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 13:04](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 13:11](1937 MB) - -PASS -- COMPILE 'csawmg_intel' [33:53, 33:53] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:06, 09:31](961 MB) -PASS -- TEST 'control_ras_intel' [05:20, 05:00](667 MB) - -PASS -- COMPILE 'wam_intel' [33:27, 33:27] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [15:32, 14:49](1621 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:59, 15:59] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:37, 04:22](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [08:25, 07:53](1012 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:35, 07:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 03:35](1560 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:29](1569 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:48](768 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:47, 03:27](761 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:11, 07:36](1082 MB) -PASS -- TEST 'control_ras_debug_intel' [04:57, 04:33](771 MB) -PASS -- TEST 'control_diag_debug_intel' [07:12, 03:27](1626 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 04:31](1848 MB) -PASS -- TEST 'regional_debug_intel' [23:29, 22:47](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 06:09](1151 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:17, 06:00](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:09](1150 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 06:12](1151 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:10](1155 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:19, 06:47](1235 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 06:15](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:13](1154 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 06:08](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 06:09](1157 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:17, 06:04](1148 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 06:09](1154 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 10:04](1149 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 06:02](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 07:27](1153 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:29, 06:10](1156 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 10:34](1159 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:39, 04:39] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:09, 16:33](1632 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 05:25](1084 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 08:22](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 04:32](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 08:03](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 04:05](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 04:42](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:21, 06:22](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:59, 02:37](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:45, 50:45] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 03:02](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:08, 01:30](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:22, 01:43](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:36, 30:36] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 05:33](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:52, 04:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 06:05](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:15, 05:56](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [19:11, 18:27](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:28, 18:45](849 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:15, 10:40](1092 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:06, 18:28](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:40, 04:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:15](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [38:09, 38:09] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:22, 07:06](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 06:49](1087 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:55, 09:16](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:49, 16:28](805 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 19:05](821 MB) -PASS -- TEST 'gnv1_nested_intel' [09:15, 07:08](1660 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:29, 33:29] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:03, 08:49](774 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 08:45](750 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:29, 08:29] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:48, 03:39](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 02:09](1043 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:33](923 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:46, 03:36](925 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:46, 03:35](923 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:48, 03:39](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 03:39](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 03:34](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:56, 07:55](883 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:49, 07:48](843 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:45, 03:38](1060 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 05:07](2394 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 05:07](2411 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:14, 03:14] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:32, 08:22](999 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:21, 08:21] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 03:37](1061 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:54, 01:54] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:08, 01:44](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:45, 01:25](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:11, 00:54](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [33:56, 33:56] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:18, 06:13](1881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:26, 33:26] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:27, 06:09](1859 MB) - -PASS -- COMPILE 'atml_intel' [37:15, 37:15] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:21, 08:57](1860 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:53, 09:24](1847 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 05:16](1064 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:02, 06:02] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:40, 08:23](1887 MB) - -PASS -- COMPILE 'atmw_intel' [34:57, 34:57] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 03:07](1869 MB) - -PASS -- COMPILE 'atmaero_intel' [33:02, 33:02] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:36, 06:17](1934 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:47, 06:43](1713 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:30, 06:38](1725 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [40:15, 40:05] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 07:30](2011 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 49:49] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:04, 21:18](1889 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:08, 22:31](2021 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 10:56](1132 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 24:35](1850 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:43] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:51, 21:02](1870 MB) + +PASS -- COMPILE 's2swa_intel' [41:15, 40:56] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:25](2012 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:52, 08:31](2004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:00, 04:57](1699 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:28, 08:29](2058 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:59](1695 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 08:14](2308 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:23, 08:12](2042 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 07:03](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:53, 08:27](2037 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:37, 08:20](1990 MB) + +PASS -- COMPILE 's2sw_intel' [39:15, 38:28] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:18](1894 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 06:59](1959 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:25] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:52, 11:14](2061 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:07] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:15, 07:56](1907 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:18] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 06:30](1964 MB) + +PASS -- COMPILE 's2s_intel' [35:16, 34:36] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:07, 13:23](3059 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:08, 04:07](3040 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:15](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:24, 34:26] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:55, 08:02](2055 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:53] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:59, 21:36](1905 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:00](1134 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:34, 24:49](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:44, 32:26](1894 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:18, 37:14] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [09:35, 04:34](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:18, 03:59](1558 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:21, 04:10](1560 MB) +PASS -- TEST 'control_latlon_intel' [13:11, 03:48](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:22, 04:09](1549 MB) +PASS -- TEST 'control_c48_intel' [17:29, 12:03](1736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:43, 10:17](854 MB) +PASS -- TEST 'control_c192_intel' [24:36, 14:24](1679 MB) +PASS -- TEST 'control_c384_intel' [24:33, 18:05](1817 MB) +PASS -- TEST 'control_c384gdas_intel' [20:36, 13:36](1016 MB) +PASS -- TEST 'control_stochy_intel' [07:34, 02:13](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:23](435 MB) +PASS -- TEST 'control_lndp_intel' [06:35, 02:08](603 MB) +PASS -- TEST 'control_iovr4_intel' [08:41, 03:25](601 MB) +PASS -- TEST 'control_iovr5_intel' [08:38, 03:24](602 MB) +PASS -- TEST 'control_p8_intel' [13:42, 04:46](1814 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [15:09, 04:47](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 04:41](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [13:30, 02:49](1062 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:46, 04:32](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:56](1076 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:45, 04:50](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:44, 04:44](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:17, 08:02](1838 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:59, 05:58](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:57, 04:52](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [16:17, 05:15](1851 MB) +PASS -- TEST 'regional_control_intel' [15:11, 08:14](1013 MB) +PASS -- TEST 'regional_restart_intel' [05:42, 04:35](1006 MB) +PASS -- TEST 'regional_decomp_intel' [14:12, 08:33](997 MB) +PASS -- TEST 'regional_2threads_intel' [11:11, 06:43](1004 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:18, 08:11](1019 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:11, 08:20](1012 MB) + +PASS -- COMPILE 'rrfs_intel' [36:15, 34:54] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [16:15, 10:09](995 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:37](1225 MB) +PASS -- TEST 'rap_decomp_intel' [12:02, 10:43](987 MB) +PASS -- TEST 'rap_2threads_intel' [11:33, 09:41](1078 MB) +PASS -- TEST 'rap_restart_intel' [08:27, 05:20](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:14, 10:07](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:28, 10:47](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:36, 07:37](1001 MB) +PASS -- TEST 'hrrr_control_intel' [12:30, 05:17](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:11, 05:23](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:06, 04:50](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:51](927 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:36, 09:57](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:24](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:14](1931 MB) + +PASS -- COMPILE 'csawmg_intel' [33:15, 32:15] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:48, 08:53](959 MB) +PASS -- TEST 'control_ras_intel' [13:29, 04:25](668 MB) + +PASS -- COMPILE 'wam_intel' [33:15, 32:14] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:58, 14:20](1622 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 13:04] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:44, 04:23](1843 MB) +PASS -- TEST 'regional_control_faster_intel' [09:51, 07:37](1010 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:14] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:56, 03:19](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:02, 03:17](1561 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:49](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:32, 03:25](768 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:54, 05:55](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [05:33, 03:30](779 MB) +PASS -- TEST 'control_diag_debug_intel' [09:00, 03:26](1626 MB) +PASS -- TEST 'control_debug_p8_intel' [09:05, 04:18](1852 MB) +PASS -- TEST 'regional_debug_intel' [26:59, 22:54](1021 MB) +PASS -- TEST 'rap_control_debug_intel' [09:36, 06:06](1152 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:36, 06:00](1146 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:36, 06:04](1151 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:37, 06:05](1151 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:32, 06:04](1157 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:42, 06:25](1239 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:25, 06:13](1149 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:25, 06:14](1155 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:10](1155 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:30, 06:07](1148 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:30, 05:59](1152 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:29, 06:05](1158 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:27, 09:56](1157 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:27, 06:02](1150 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:31, 07:30](1157 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:32, 06:06](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:37, 10:35](1149 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:12, 04:40] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [21:06, 16:34](1634 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 29:53] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:28, 05:23](1082 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 08:23](901 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:19](881 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:27, 07:59](962 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 04:07](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 04:42](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:05, 06:18](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:20](844 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:17, 49:52] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:06, 03:03](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:22](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:39](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 30:56] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:56, 05:25](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:30] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:00](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 05:53](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [20:07, 18:19](1176 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:30](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 10:38](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:23](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:15](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [44:17, 38:43] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:28, 07:02](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:38, 06:29](1091 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:50, 09:18](780 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:31, 16:21](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:52, 18:16](820 MB) +PASS -- TEST 'gnv1_nested_intel' [39:03, 06:55](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:16, 33:37] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:33, 08:39](774 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:39, 08:42](753 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:30] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:36](1065 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:26, 02:17](1033 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:25, 03:30](924 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:25, 03:36](927 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:26, 03:35](924 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 03:37](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 03:35](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:33](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:26, 07:55](884 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:25, 07:48](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1062 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:27, 05:02](2337 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:05](2381 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:40] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:25, 07:59](1014 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:17] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:38](1061 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:50] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:40, 01:44](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:24](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:51](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:17, 33:44] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:30, 05:46](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:16] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [23:41, 05:37](1888 MB) + +PASS -- COMPILE 'atml_intel' [42:16, 41:39] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:45, 08:39](1847 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:49, 08:47](1831 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:25](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:54] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:51, 08:17](1875 MB) + +PASS -- COMPILE 'atmw_intel' [35:15, 34:23] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 03:18](1859 MB) + +PASS -- COMPILE 'atmaero_intel' [50:19, 32:49] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:33](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:31, 06:27](1721 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:16, 06:29](1727 MB) SYNOPSIS: -Starting Date/Time: 20240624 04:17:09 -Ending Date/Time: 20240624 09:27:57 -Total Time: 05h:11m:24s +Starting Date/Time: 20240630 22:41:54 +Ending Date/Time: 20240701 02:59:19 +Total Time: 04h:17m:56s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 675a2d422a..484d368861 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8c760efa1a434d8dede921101446ee396b5ff53f +3344c3e6be519c08f98fe39e342985e7c821e0e9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 523f5a3ea2123bc713804aaf347da64b004afb9d FV3/atmos_cubed_sphere (201912_public_release-398-g523f5a3) + 97c3cc5e0e2bfbe67253609af97236636a8fc4c7 FV3/ccpp/framework (CPF_0.2.057) + c6dec90f4cd8e9f7ac5772cf51e9df6cd5f59cdd FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5268-gc6dec90f) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,284 +35,284 @@ 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-20240614 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3171683 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_277304 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [16:33, 16:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:12, 14:08](2085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:30, 22:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:15, 17:53](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:23, 18:49](2137 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 08:50](1206 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:44, 20:20](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:42, 21:41] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:08, 17:37](1956 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:09, 08:09] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 27:06](1928 MB) - -PASS -- COMPILE 's2swa_intel' [16:07, 16:07] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:19, 14:10](2138 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:29, 14:21](2130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:50, 07:43](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:25, 14:23](2164 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:15, 07:55](1709 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:00, 13:07](2427 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 14:18](2131 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:16, 12:37](2041 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:10, 14:12](2138 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:11, 16:17](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 08:45](2725 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:01, 11:43](3638 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 07:12](3480 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:46, 05:56](2108 MB) - -PASS -- COMPILE 's2sw_intel' [14:37, 14:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:24, 13:32](1971 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:54, 04:52](2043 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:06, 08:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:55, 08:47](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:03, 08:03] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 07:12](1991 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:47, 13:47] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 04:46](2040 MB) - -PASS -- COMPILE 's2s_intel' [13:48, 13:47] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:49, 13:11](3095 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:25, 03:52](3064 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:58](2505 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:40, 23:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:51, 14:54](2135 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:03, 20:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:40, 17:56](1987 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 08:26](1255 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 20:17](1921 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:01, 06:01] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:23, 28:40](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:49, 12:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:49, 03:38](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 03:04](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 03:09](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:35, 03:08](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 03:06](1593 MB) -PASS -- TEST 'control_c48_intel' [12:27, 11:59](1745 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 10:17](859 MB) -PASS -- TEST 'control_c192_intel' [11:42, 11:08](1730 MB) -PASS -- TEST 'control_c384_intel' [13:23, 12:04](2015 MB) -PASS -- TEST 'control_c384gdas_intel' [11:29, 09:28](1359 MB) -PASS -- TEST 'control_stochy_intel' [01:56, 01:46](647 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [01:49, 01:40](652 MB) -PASS -- TEST 'control_iovr4_intel' [02:48, 02:37](647 MB) -PASS -- TEST 'control_iovr5_intel' [02:48, 02:37](646 MB) -PASS -- TEST 'control_p8_intel' [04:17, 03:30](1887 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:12, 03:22](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:30, 03:22](1879 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:57](1091 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:56, 03:19](1876 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:52](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:24, 03:25](1877 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:31, 03:32](1973 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:16, 05:48](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:48](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:26, 03:27](1889 MB) -PASS -- TEST 'merra2_thompson_intel' [05:01, 03:43](1891 MB) -PASS -- TEST 'regional_control_intel' [06:34, 06:09](1094 MB) -PASS -- TEST 'regional_restart_intel' [03:47, 03:20](1085 MB) -PASS -- TEST 'regional_decomp_intel' [06:58, 06:34](1077 MB) -PASS -- TEST 'regional_2threads_intel' [04:45, 04:25](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [06:26, 06:06](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 06:08](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 06:09](1070 MB) -PASS -- TEST 'regional_wofs_intel' [07:51, 07:28](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [11:59, 11:59] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:10, 08:10](1055 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:44, 05:00](1304 MB) -PASS -- TEST 'rap_decomp_intel' [09:31, 08:27](1019 MB) -PASS -- TEST 'rap_2threads_intel' [09:15, 08:13](1169 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 04:14](1038 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:13, 08:09](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 08:27](1025 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:20, 06:07](1079 MB) -PASS -- TEST 'hrrr_control_intel' [05:13, 04:12](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:18, 04:17](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:22, 09:17](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:46, 02:18](955 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:05, 08:00](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:48, 09:37](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:32, 09:22](2023 MB) - -PASS -- COMPILE 'csawmg_intel' [10:44, 10:44] -PASS -- TEST 'control_csawmg_intel' [06:47, 06:28](1024 MB) -PASS -- TEST 'control_ras_intel' [03:35, 03:25](719 MB) - -PASS -- COMPILE 'wam_intel' [10:56, 10:56] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:36, 12:07](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:23, 19:23] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:19, 03:09](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [06:13, 05:53](1088 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:42, 07:42] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:06, 02:42](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:10, 02:38](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:13, 03:04](808 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:53, 02:45](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:36, 04:17](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [03:00, 02:46](818 MB) -PASS -- TEST 'control_diag_debug_intel' [03:13, 02:47](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [03:25, 03:01](1900 MB) -PASS -- TEST 'regional_debug_intel' [17:59, 17:37](1089 MB) -PASS -- TEST 'rap_control_debug_intel' [05:04, 04:54](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:55, 04:45](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:03, 04:53](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:12, 04:57](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:57, 04:48](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:03](1281 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 05:04](1200 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:04](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 05:00](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 05:01](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:06, 04:49](1194 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 05:07](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 08:02](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 05:02](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:54, 05:43](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:05, 04:55](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:40, 08:34](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:16, 05:16] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:17, 13:49](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:59, 10:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:35, 04:52](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 06:55](1012 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:03, 03:41](929 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:04](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:52, 08:24](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 03:51](905 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:32, 05:16](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 02:03](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:01, 15:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:22, 02:42](1176 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:16](1128 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:51, 01:28](1078 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:21, 11:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 04:26](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 05:21] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:55](1071 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:57, 04:41](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [15:16, 14:44](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:26, 14:53](925 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:54, 08:23](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 14:41](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 05:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:00, 04:51](1122 MB) - -PASS -- COMPILE 'hafsw_intel' [13:16, 13:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:58, 05:55](762 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 06:13](1140 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:46, 07:28](835 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:06, 24:04](868 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:38, 28:34](890 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 07:00](511 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:31, 08:16](526 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 03:23](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 09:27](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:19, 04:38](538 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:10, 04:23](546 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:50](594 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:53, 01:32](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:09, 04:16](1732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:16, 06:16] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 13:15](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:59, 21:59] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:55, 12:53](677 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 12:58](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:50, 13:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:50, 08:45](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:53, 12:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:18, 07:18](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:24, 07:19](815 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:05, 16:24](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:22, 10:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:04, 02:56](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:05, 01:55](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:56, 02:49](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:50](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:58, 02:52](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:59, 02:54](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:03, 02:55](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:51, 02:46](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:31](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:24](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:54](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 04:15](2441 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:23, 04:16](2436 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:09, 05:09] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 06:32](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:28, 07:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:58, 02:53](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:24, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 01:03](249 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:52](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:50, 00:34](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 12:13] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:58, 04:04](1970 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:58, 11:58] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:53, 03:55](1960 MB) - -PASS -- COMPILE 'atml_intel' [14:07, 14:07] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:52, 04:47](1870 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:01, 04:46](1875 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:26, 02:44](1084 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:44, 06:44] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:00, 05:45](1887 MB) - -PASS -- COMPILE 'atmw_intel' [12:52, 12:52] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:14, 02:09](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [12:03, 12:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:31, 04:32](1995 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 05:15](1776 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 05:17](1792 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:53, 04:53] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:37, 21:00](4562 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [17:12, 16:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:42, 15:35](2094 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 22:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:36, 17:59](1955 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:05, 19:02](2128 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1215 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:33, 20:16](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 22:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:44](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:33] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:45, 27:06](1931 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:41] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:51](2143 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:39, 14:40](2143 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:47, 07:53](1813 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:34](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:47, 08:08](1714 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:25](2435 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:31, 14:17](2140 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:20](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:19](2132 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:48, 16:21](2722 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:04, 08:53](2741 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:44, 11:28](3654 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:54, 06:58](3489 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 06:04](2113 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 13:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:03, 13:32](1982 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:21, 04:58](2053 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:32] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:30, 08:48](2143 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:37] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:16, 06:32](1994 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:54] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 05:13](2056 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 13:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:00, 10:08](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:44](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:15](2516 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:12, 22:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:30, 14:44](2142 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 19:39] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 18:10](1994 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 08:57](1243 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:03, 20:17](1914 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 07:13] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:01, 28:43](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 03:36](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:43, 03:03](1591 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 03:12](1600 MB) +PASS -- TEST 'control_latlon_intel' [03:39, 03:04](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:45, 03:06](1591 MB) +PASS -- TEST 'control_c48_intel' [10:42, 09:23](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:57](849 MB) +PASS -- TEST 'control_c192_intel' [11:52, 11:06](1730 MB) +PASS -- TEST 'control_c384_intel' [13:51, 12:05](2010 MB) +PASS -- TEST 'control_c384gdas_intel' [12:28, 09:23](1364 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:48](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:05](474 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:40](645 MB) +PASS -- TEST 'control_iovr4_intel' [03:31, 02:40](643 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:38](640 MB) +PASS -- TEST 'control_p8_intel' [05:13, 03:28](1885 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:13, 03:31](1895 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:23](1893 MB) +PASS -- TEST 'control_restart_p8_intel' [03:12, 01:57](1097 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:13, 03:21](1876 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:55](1134 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:27](1884 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:17, 03:40](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:49](1885 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:24, 04:54](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:18, 03:31](1889 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:48](1885 MB) +PASS -- TEST 'regional_control_intel' [07:40, 06:31](1093 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 03:23](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 06:38](1086 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 04:32](1072 MB) +PASS -- TEST 'regional_noquilt_intel' [06:39, 06:06](1383 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 06:10](1095 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 06:12](1090 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 07:29](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:40] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:25, 08:10](1054 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 04:59](1308 MB) +PASS -- TEST 'rap_decomp_intel' [10:19, 08:33](1019 MB) +PASS -- TEST 'rap_2threads_intel' [10:20, 08:13](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:15](1053 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:58, 08:11](1058 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:26](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:34, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [06:20, 04:16](1033 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:02, 04:17](1017 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:02](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:37, 02:17](949 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:20, 08:01](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:42](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 09:22](2016 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 11:08] +PASS -- TEST 'control_csawmg_intel' [07:32, 06:29](1022 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:24](721 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:47, 12:13](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:22, 03:12](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 06:01](1089 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:42](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:48, 02:40](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:21, 03:05](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:50](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:18](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:48](811 MB) +PASS -- TEST 'control_diag_debug_intel' [03:47, 02:45](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 03:12](1901 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 18:02](1092 MB) +PASS -- TEST 'rap_control_debug_intel' [05:25, 04:58](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:26, 05:01](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:53](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:50](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:52](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:30, 05:06](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:59](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:00](1195 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:01](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:59](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:46](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:50](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:52](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:40](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:56](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:58](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:42](1197 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:32] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:45, 12:59](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:44](1164 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 06:58](1006 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:40](924 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:03](1083 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:32](948 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:49](906 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:25, 05:16](989 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 17:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:53, 02:39](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:14](1132 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:41, 01:30](1090 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 11:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:27](980 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 05:03] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:48](1070 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:38](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [15:41, 14:15](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:41](924 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:44](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:41, 14:07](1295 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 05:05] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:54](1120 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:13, 05:53](756 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:23, 06:13](1135 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 07:29](834 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:13, 24:48](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:33, 28:46](891 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:56](514 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 08:17](523 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:24](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 09:27](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 04:35](539 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:25](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 05:40](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:30](408 MB) +PASS -- TEST 'gnv1_nested_intel' [07:08, 04:13](1725 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:53] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:51, 13:06](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:57, 12:50](673 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:20, 12:53](737 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:59] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:06, 08:43](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 12:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 07:15](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 07:16](817 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:21](1206 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:54](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:55](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:48](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:53](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:52](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:57](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:49](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:29](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:05, 06:22](1008 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1137 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:19](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:18](2380 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:30] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:33](1059 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 09:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:59](1139 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:03](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:55](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:34](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:10, 12:24] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:04](1974 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 11:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:04, 03:50](1956 MB) + +PASS -- COMPILE 'atml_intel' [13:10, 12:47] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:29, 04:45](1866 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:24, 04:48](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:43](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:06] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:17, 05:51](1885 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 12:02] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 02:13](1919 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:10, 04:30](1996 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 05:13](1783 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:22](1797 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:51] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:53, 20:52](4546 MB) SYNOPSIS: -Starting Date/Time: 20240623 10:06:52 -Ending Date/Time: 20240623 13:50:59 -Total Time: 03h:44m:40s +Starting Date/Time: 20240708 17:47:35 +Ending Date/Time: 20240708 19:18:30 +Total Time: 01h:31m:24s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 61c0a827cc..36eb4c9417 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -63b2c97ab37b3fc31677e2899885a18e74d3b165 +a4ee6f04e21b4d181b4e642103de3dd9039ec837 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9733e45c9219eba27a7632ddc0de5b338cca6b5d CICE-interface/CICE (CICE6.0.0-457-g9733e45) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/HEAD-1-g4fd5f0e) - a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (201912_public_release-399-ga6fdff7) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 93b8a2a8700bf454e3297834b15dd74f43590389 FV3 (remotes/origin/HR4-GWD-update) + 523f5a3ea2123bc713804aaf347da64b004afb9d FV3/atmos_cubed_sphere (201912_public_release-398-g523f5a3) + 97c3cc5e0e2bfbe67253609af97236636a8fc4c7 FV3/ccpp/framework (CPF_0.2.057) + c6dec90f4cd8e9f7ac5772cf51e9df6cd5f59cdd FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5268-gc6dec90f) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40229 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_210301 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:12, 01:09](3095 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 11:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 02:32](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:09, 01:49](1848 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:05, 01:30](983 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:15](1806 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 40:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:40, 00:38](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:19, 04:39] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [59:25, 01:59](1831 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [53:16, 01:28](3134 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:16, 01:53](3127 MB) -PASS -- TEST 'cpld_restart_p8_intel' [43:55, 01:06](3062 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [53:16, 01:38](3149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [43:55, 01:57](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [53:16, 01:04](3361 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [53:16, 01:31](3122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [53:17, 01:30](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:16, 01:56](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [53:25, 03:57](4110 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:24, 04:14](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [53:16, 01:57](3108 MB) - -PASS -- COMPILE 's2sw_intel' [33:47, 31:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [31:57, 01:29](1837 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:12, 02:05](1895 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:54, 31:52] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [30:12, 01:05](1894 MB) - -PASS -- COMPILE 's2s_intel' [24:37, 22:29] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:06, 01:02](2907 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [42:06, 00:46](2907 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:03, 01:01](2302 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:33, 18:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 02:11](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:28, 11:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:15, 01:51](1830 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [33:47, 01:47](1006 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:48, 01:42](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 08:33] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:00, 01:01](1845 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:35, 17:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:04, 00:40](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:04, 00:47](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:03, 00:45](1471 MB) -PASS -- TEST 'control_latlon_intel' [26:51, 00:37](1468 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:54, 01:02](1472 MB) -PASS -- TEST 'control_c48_intel' [25:47, 00:27](1588 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [25:41, 01:24](713 MB) -PASS -- TEST 'control_c192_intel' [25:04, 00:30](1592 MB) -PASS -- TEST 'control_c384_intel' [25:08, 02:02](1911 MB) -PASS -- TEST 'control_c384gdas_intel' [25:08, 02:07](1090 MB) -PASS -- TEST 'control_stochy_intel' [25:00, 00:22](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [20:22, 01:07](333 MB) -PASS -- TEST 'control_lndp_intel' [24:59, 00:29](527 MB) -PASS -- TEST 'control_iovr4_intel' [24:59, 00:56](526 MB) -PASS -- TEST 'control_iovr5_intel' [24:59, 00:59](524 MB) -PASS -- TEST 'control_p8_intel' [24:58, 01:51](1765 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [24:58, 01:53](1770 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [24:52, 01:56](1767 MB) -PASS -- TEST 'control_restart_p8_intel' [17:23, 01:08](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:58, 01:00](1764 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:54, 01:11](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [23:51, 00:58](1764 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:31, 00:59](1860 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:43, 01:09](1771 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:30, 02:01](1820 MB) -PASS -- TEST 'control_p8_mynn_intel' [20:21, 02:05](1781 MB) -PASS -- TEST 'merra2_thompson_intel' [20:13, 01:47](1779 MB) -PASS -- TEST 'regional_control_intel' [20:11, 00:15](851 MB) -PASS -- TEST 'regional_restart_intel' [13:24, 00:50](852 MB) -PASS -- TEST 'regional_decomp_intel' [20:05, 00:59](853 MB) -PASS -- TEST 'regional_2threads_intel' [19:59, 00:22](906 MB) -PASS -- TEST 'regional_noquilt_intel' [19:53, 00:47](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [19:32, 00:35](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [19:22, 00:26](848 MB) -PASS -- TEST 'regional_wofs_intel' [19:17, 01:13](1578 MB) - -PASS -- COMPILE 'rrfs_intel' [21:37, 20:34] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [19:16, 01:15](916 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:06, 00:51](1094 MB) -PASS -- TEST 'rap_decomp_intel' [17:24, 01:30](913 MB) -PASS -- TEST 'rap_2threads_intel' [17:24, 01:48](1000 MB) -PASS -- TEST 'rap_restart_intel' [08:49, 01:16](782 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:52, 01:21](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:49, 01:03](908 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 02:06](784 MB) -PASS -- TEST 'hrrr_control_intel' [15:58, 01:23](905 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:52, 01:13](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:36, 01:07](985 MB) -PASS -- TEST 'hrrr_control_restart_intel' [09:32, 01:06](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:20, 02:01](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:52, 01:00](1869 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:40, 01:20](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [19:37, 18:04] -PASS -- TEST 'control_csawmg_intel' [13:32, 00:52](873 MB) -PASS -- TEST 'control_ras_intel' [13:06, 00:29](566 MB) - -PASS -- COMPILE 'wam_intel' [12:30, 09:35] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [36:29, 01:15](1565 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:36, 18:56] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:57, 01:52](1774 MB) -PASS -- TEST 'regional_control_faster_intel' [12:21, 00:42](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:27, 10:57] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:42, 00:32](1481 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:42, 01:26](1485 MB) -PASS -- TEST 'control_stochy_debug_intel' [33:42, 01:16](689 MB) -PASS -- TEST 'control_lndp_debug_intel' [33:42, 01:21](690 MB) -PASS -- TEST 'control_csawmg_debug_intel' [33:42, 00:46](998 MB) -PASS -- TEST 'control_ras_debug_intel' [33:42, 01:19](696 MB) -PASS -- TEST 'control_diag_debug_intel' [33:42, 01:28](1551 MB) -PASS -- TEST 'control_debug_p8_intel' [33:42, 01:14](1790 MB) -PASS -- TEST 'regional_debug_intel' [33:41, 00:12](877 MB) -PASS -- TEST 'rap_control_debug_intel' [33:42, 01:04](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [33:42, 01:07](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [33:42, 00:36](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [33:42, 00:39](1070 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:42, 00:41](1072 MB) -PASS -- TEST 'rap_diag_debug_intel' [33:42, 01:25](1155 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:42, 01:02](1073 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [33:42, 00:57](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [33:42, 01:02](1076 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:42, 00:26](1072 MB) -PASS -- TEST 'rap_noah_debug_intel' [33:42, 00:46](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:11, 01:16](1070 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:10, 01:10](1066 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:54, 00:28](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:50, 00:41](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:41, 00:43](1075 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:37, 01:51](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:28, 10:24] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:58, 01:15](1579 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:29, 11:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:49, 01:01](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 02:10](796 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:35, 02:35](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:32, 01:14](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:28, 02:27](846 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:37, 02:04](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [00:37, 01:21](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:33, 00:20](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:44, 22:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:59, 01:17](1007 MB) -PASS -- TEST 'conus13km_2threads_intel' [59:04, 00:17](1006 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [58:21, 00:35](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:36, 15:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:03, 00:41](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 07:41] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 00:21](953 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 00:28](954 MB) -PASS -- TEST 'conus13km_debug_intel' [05:42, 00:25](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [05:34, 00:23](718 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [04:32, 01:06](1047 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [04:00, 00:23](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:41, 20:28] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:09, 00:48](982 MB) - -PASS -- COMPILE 'hafsw_intel' [16:31, 12:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:00, 01:30](615 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:45, 00:32](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:39, 01:48](658 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [03:32, 02:22](695 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:24, 02:22](710 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:05, 01:07](388 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:32, 01:50](401 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:19, 01:18](294 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:49, 02:17](373 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 00:51](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [00:54, 01:32](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [00:36, 01:30](489 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [00:16, 01:27](324 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:24, 06:51] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:01, 01:27](515 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:46, 23:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:31, 01:23](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:05, 01:33](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:35, 16:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [57:56, 00:58](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:26, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:58, 01:35](661 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:50, 01:31](646 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [55:01, 00:24](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:39, 19:55] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:53, 01:34](1826 MB) - -PASS -- COMPILE 'atml_intel' [20:37, 18:03] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [15:35, 13:22] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [11:29, 09:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [46:32, 01:52](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [46:25, 01:19](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [46:24, 01:02](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:29, 10:29] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [40:59, 01:19](4436 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:38, 20:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:48, 01:24](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:40, 25:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [48:45, 01:48](1826 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:47, 01:37](1849 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [30:24, 01:55](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:46, 02:46](1795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:27, 11:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [01:58, 01:12](1822 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:45] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [09:10, 01:35](1834 MB) + +PASS -- COMPILE 's2swa_intel' [12:27, 11:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [01:58, 01:25](3130 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:58, 01:46](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [53:46, 00:57](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [01:58, 01:26](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:48, 00:51](3084 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [01:58, 01:04](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [01:58, 01:32](3125 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [01:59, 01:25](3075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:58, 01:44](3133 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [02:07, 03:54](4125 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:38, 04:56](4265 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [01:58, 01:46](3111 MB) + +PASS -- COMPILE 's2sw_intel' [32:53, 32:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [41:32, 00:51](1835 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:32, 00:59](1898 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [40:59, 40:33] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:26, 02:09](1891 MB) + +PASS -- COMPILE 's2s_intel' [13:28, 12:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [00:56, 00:58](2923 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [00:56, 01:21](2927 MB) +PASS -- TEST 'cpld_restart_c48_intel' [56:58, 01:04](2320 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:42, 25:38] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:44, 01:57](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:30] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:55, 01:09](1833 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [40:30, 01:31](989 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [40:31, 01:35](1807 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:21, 08:01] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [00:48, 01:36](1837 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:29, 13:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:27, 00:18](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [47:27, 00:29](1467 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:27, 01:23](1478 MB) +PASS -- TEST 'control_latlon_intel' [47:27, 00:25](1471 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [47:27, 00:30](1468 MB) +PASS -- TEST 'control_c48_intel' [47:26, 00:55](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [47:26, 00:51](714 MB) +PASS -- TEST 'control_c192_intel' [47:27, 00:30](1587 MB) +PASS -- TEST 'control_c384_intel' [47:31, 01:18](1903 MB) +PASS -- TEST 'control_c384gdas_intel' [47:31, 01:49](1093 MB) +PASS -- TEST 'control_stochy_intel' [47:27, 00:24](528 MB) +PASS -- TEST 'control_stochy_restart_intel' [44:59, 01:02](330 MB) +PASS -- TEST 'control_lndp_intel' [47:27, 00:27](527 MB) +PASS -- TEST 'control_iovr4_intel' [47:27, 00:43](525 MB) +PASS -- TEST 'control_iovr5_intel' [47:27, 00:41](527 MB) +PASS -- TEST 'control_p8_intel' [47:27, 01:44](1767 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [47:27, 02:01](1769 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [47:27, 02:03](1773 MB) +PASS -- TEST 'control_restart_p8_intel' [41:54, 00:57](909 MB) +PASS -- TEST 'control_noqr_p8_intel' [47:27, 01:41](1768 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [41:53, 01:00](906 MB) +PASS -- TEST 'control_decomp_p8_intel' [47:27, 01:38](1771 MB) +PASS -- TEST 'control_2threads_p8_intel' [47:27, 01:05](1853 MB) +PASS -- TEST 'control_p8_lndp_intel' [47:27, 01:05](1774 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [45:16, 02:00](1832 MB) +PASS -- TEST 'control_p8_mynn_intel' [45:01, 01:37](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [44:59, 01:31](1776 MB) +PASS -- TEST 'regional_control_intel' [43:55, 01:10](854 MB) +PASS -- TEST 'regional_restart_intel' [37:09, 00:23](854 MB) +PASS -- TEST 'regional_decomp_intel' [43:55, 00:53](856 MB) +PASS -- TEST 'regional_2threads_intel' [43:27, 00:51](908 MB) +PASS -- TEST 'regional_noquilt_intel' [43:23, 00:15](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [43:16, 00:24](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [42:57, 00:12](859 MB) +PASS -- TEST 'regional_wofs_intel' [42:55, 00:45](1577 MB) + +PASS -- COMPILE 'rrfs_intel' [21:36, 21:15] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [40:21, 01:39](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [40:22, 01:06](1094 MB) +PASS -- TEST 'rap_decomp_intel' [40:20, 01:23](912 MB) +PASS -- TEST 'rap_2threads_intel' [39:45, 01:40](1001 MB) +PASS -- TEST 'rap_restart_intel' [31:21, 01:16](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [39:29, 02:03](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [39:11, 01:29](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [30:09, 01:42](780 MB) +PASS -- TEST 'hrrr_control_intel' [39:10, 01:16](903 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [38:51, 00:56](905 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [38:45, 01:19](989 MB) +PASS -- TEST 'hrrr_control_restart_intel' [33:52, 00:59](736 MB) +PASS -- TEST 'rrfs_v1beta_intel' [38:23, 03:33](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [38:23, 02:12](1871 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:45, 01:49](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [28:47, 28:06] +PASS -- TEST 'control_csawmg_intel' [31:22, 00:26](871 MB) +PASS -- TEST 'control_ras_intel' [31:21, 00:46](566 MB) + +PASS -- COMPILE 'wam_intel' [17:31, 16:49] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [42:46, 00:49](1568 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [30:48, 29:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [27:00, 01:56](1769 MB) +PASS -- TEST 'regional_control_faster_intel' [26:43, 00:20](849 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:36, 19:12] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:11, 02:20](1481 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:11, 02:19](1491 MB) +PASS -- TEST 'control_stochy_debug_intel' [33:11, 01:57](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [33:11, 02:15](689 MB) +PASS -- TEST 'control_csawmg_debug_intel' [33:11, 01:22](1000 MB) +PASS -- TEST 'control_ras_debug_intel' [33:11, 02:13](700 MB) +PASS -- TEST 'control_diag_debug_intel' [33:11, 02:09](1551 MB) +PASS -- TEST 'control_debug_p8_intel' [33:11, 01:50](1783 MB) +PASS -- TEST 'regional_debug_intel' [33:10, 00:33](878 MB) +PASS -- TEST 'rap_control_debug_intel' [33:11, 00:48](1074 MB) +PASS -- TEST 'hrrr_control_debug_intel' [33:11, 00:59](1071 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [33:11, 00:50](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:11, 00:52](1073 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:09, 00:50](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [30:06, 00:39](1156 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:50, 00:36](1070 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:37, 00:42](1075 MB) +PASS -- TEST 'rap_lndp_debug_intel' [27:37, 00:50](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [27:37, 00:49](1073 MB) +PASS -- TEST 'rap_noah_debug_intel' [27:37, 00:53](1071 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [27:37, 00:46](1070 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:35, 00:42](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [27:34, 00:53](1069 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [27:30, 00:43](1083 MB) +PASS -- TEST 'rap_flake_debug_intel' [27:26, 00:54](1075 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:26, 02:10](1076 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 04:31] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [42:30, 01:34](1581 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:33, 16:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:25, 01:18](953 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:44, 01:20](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:40, 01:47](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:40, 01:42](852 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:40, 02:04](848 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [26:39, 01:39](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:16, 01:21](691 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:21, 00:21](673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:40, 19:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [26:05, 01:02](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:17, 00:52](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:39, 00:42](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:40, 14:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:00, 01:25](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:27, 11:18] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:00, 01:05](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:44, 01:09](950 MB) +PASS -- TEST 'conus13km_debug_intel' [23:42, 01:22](1046 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 01:11](713 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:31, 00:24](1045 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:44, 00:22](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:31, 13:52] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:22, 00:59](984 MB) + +PASS -- COMPILE 'hafsw_intel' [25:36, 24:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [14:47, 02:05](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:47, 00:46](967 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:45, 01:48](659 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:45, 01:26](697 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:46, 01:20](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:45, 01:01](392 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:46, 02:11](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:46, 01:32](288 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:49, 02:33](373 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:45, 01:32](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:45, 00:51](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:47, 00:49](496 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:46, 00:26](325 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:35, 18:32] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:54, 00:40](511 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:41, 19:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 00:53](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:33, 00:45](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:31, 14:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:41, 00:52](711 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:43, 26:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [03:27, 01:15](659 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:27, 01:17](651 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:25, 00:25](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:33, 25:27] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:16, 00:46](1827 MB) + +PASS -- COMPILE 'atml_intel' [14:28, 13:47] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [20:37, 19:55] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [20:37, 19:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:22, 01:20](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:22, 01:48](2913 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:22, 01:46](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:30, 15:49] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [10:17, 01:21](4435 MB) SYNOPSIS: -Starting Date/Time: 20240624 17:52:50 -Ending Date/Time: 20240624 20:08:42 -Total Time: 02h:16m:31s +Starting Date/Time: 20240710 15:45:14 +Ending Date/Time: 20240710 17:15:48 +Total Time: 01h:31m:05s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 6158aa1657..a2d45053bf 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -138,6 +138,8 @@ do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gwd_opt_psl = @[DO_GWD_OPT_PSL] + psl_gwd_dx_factor = @[PSL_GWD_DX_FACTOR] do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] min_lakeice = @[MIN_LAKEICE] diff --git a/tests/rt.conf b/tests/rt.conf index e90dd35d42..137790d3ae 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -149,7 +149,7 @@ RUN | rrfs_v1nssl_nohailnoccn | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | RUN | control_csawmg | - noaacloud | baseline | -RUN | control_ras | - noaacloud acorn | baseline | +RUN | control_ras | - noaacloud | 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 | @@ -416,13 +416,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 | + hercules | baseline | +#RUN | cpld_control_p8 | + hercules | baseline | COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_debug_p8 | + hercules | baseline | +#RUN | cpld_debug_p8 | + hercules | baseline | # Unstructured WW3 COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | diff --git a/tests/test_changes.list b/tests/test_changes.list index 5a47c8d8b2..bcdee73b46 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,2 +1,106 @@ -control_wam intel -control_wam_debug intel +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c384 intel +control_p8 intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +rap_control intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +rap_control_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +gnv1_c96_no_nest_debug intel +rap_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +rap_control_dyn64_phy32_debug intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +control_p8 gnu +control_p8_ugwpv1 gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +control_diag_debug gnu +rap_control_debug gnu +rap_diag_debug gnu +rap_progcld_thompson_debug gnu +control_debug_p8 gnu +gnv1_c96_no_nest_debug gnu +rap_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +rap_control_dyn64_phy32_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 00ed1c8f91..66c0a88240 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -91,4 +91,12 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 -fi \ No newline at end of file +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 722fa03662..14f127024e 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -147,3 +147,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 6aa2ce2f5f..c4fca78a23 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -102,3 +102,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 1aec6e3e71..41f8d426b4 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -141,3 +141,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index cf1484d37e..0a21f62be7 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -138,3 +138,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index f96caf3733..b99fb22832 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -83,3 +83,11 @@ export eps_imesh=2.5e-1 export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 890ff98596..01426380af 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -128,3 +128,11 @@ export IOPT_DIAG=1 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 6ebbf0047a..3e59cabc9c 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -140,3 +140,11 @@ export ODA_INCUPD_UV="True" if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 728a896bd6..f191cc8dd5 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -86,3 +86,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 72cf32df77..5036092ba4 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -96,3 +96,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 0e33289f10..34bcd8d921 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -104,3 +104,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 60e9de59ca..67243979f3 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -85,3 +85,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index 1612b044ff..30ed1593fb 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -86,3 +86,11 @@ export V2_SFC_FILE=true if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index bc89653c23..fcf93cd106 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -81,3 +81,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 0668d61a0a..b01765abdf 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -81,3 +81,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 17bb7805ef..252481a48a 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -105,3 +105,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 94cb48419d..9618a05e6b 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -82,3 +82,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index eedbe81193..428f1a1a65 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -87,3 +87,11 @@ export IOPT_DIAG=1 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 6476e7540b..7152ceb68c 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -120,3 +120,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index cd3d746d8c..ec5114a81d 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -77,3 +77,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 2b11c77eb8..ed304b3b3d 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -76,3 +76,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index fa7be3c086..e0a2383ce5 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -98,3 +98,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then WLCLK=50 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index ba55cbd6ae..6c44601b3f 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -86,3 +86,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 19076b671e..1f204a4aaa 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -94,8 +94,6 @@ export np2=`expr $CICE_NPROC / 2` export CICE_BLCKX=`expr $NX_GLB / $np2` export CICE_BLCKY=`expr $NY_GLB / 2` - - export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads @@ -133,3 +131,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=1 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index fe90cf0412..84756f04d6 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -86,3 +86,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 18dcc1ee74..cd536948d2 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -104,3 +104,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 0d71a41f5c..d6a3b39d2d 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -164,3 +164,11 @@ export CICE_USE_RESTART_TIME=.true. export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 54415221ac..dce8254328 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -155,3 +155,11 @@ export CICE_USE_RESTART_TIME=.true. export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index a9e891519d..bafb92a4b5 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -169,3 +169,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 62a97d4fb3..ad4a7be818 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -133,3 +133,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=1 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index ba3fa68606..edbba45c3e 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -92,3 +92,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 01a351be21..e9e8a9d510 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -108,3 +108,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 791105837c..79ebaaf10e 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -89,3 +89,11 @@ export eps_imesh=2.5e-1 export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index efb61f024a..fb827e0b83 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -76,3 +76,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 94aa503d8f..3c2c18e6b1 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -166,3 +166,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true.