diff --git a/.cicd/scripts/create_baseline.sh b/.cicd/scripts/create_baseline.sh index 2ceed2f1fe..5bed9724b7 100755 --- a/.cicd/scripts/create_baseline.sh +++ b/.cicd/scripts/create_baseline.sh @@ -183,6 +183,33 @@ function create_baseline() { pwd cp "$(dirname "${WORKSPACE}")/RegressionTests_${machine_id}.log" "${WORKSPACE}/tests/logs/" cd ${WORKSPACE}/tests/ + elif [[ ${machine} =~ "Ursa" ]] + then + echo "Creating baselines on ${machine}" + export ACCNR=epic + sed "s|QUEUE=batch|QUEUE=windfall|g" -i rt.sh + local workflow="-r" + ./rt.sh -a "${ACCNR}" -c "${workflow}" "${opt}" "${suite}" | tee "${WORKSPACE}/tests/logs/RT-run-${machine}.log" + status=${PIPESTATUS[0]} + export DISKNM=/scratch3/NAGAPE/epic/role.epic/UFS-WM_RT + cd ${DISKNM}/NEMSfv3gfs/ + mkdir -p develop-${BL_DATE} + #cd /scratch1/NCEPDEV/stmp4/role.epic/FV3_RT + cd /scratch3/NCEPDEV/stmp/role.epic/RT_RUNDIRS/role.epic/FV3_RT + ls -l REGRESSION_TEST/. + rsync -a --no-t REGRESSION_TEST/ "${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}" || echo "#### Warning! rsync $(pwd)/REGRESSION_TEST/ incomplete." + cd ${WORKSPACE}/tests + ./rt.sh -a "${ACCNR}" "${workflow}" "${opt}" "${suite}" | tee "${WORKSPACE}/tests/logs/RT-run-${machine}.log" + status=${PIPESTATUS[0]} + cd logs/ + cp "RegressionTests_${machine_id}.log" "$(dirname "${WORKSPACE}")" #/scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + pwd + cp "$(dirname "${WORKSPACE}")/RegressionTests_${machine_id}.log" "${WORKSPACE}/tests/logs/" + cd ${WORKSPACE}/tests/ elif [[ ${machine} =~ "Derecho" ]] then echo "Creating baselines on ${machine}" diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 553f8c4b0d..3c356bf2e7 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -6,7 +6,6 @@ on: - reopened - labeled - unlabeled - - push #rm for actual PR jobs: baseline-labels: @@ -73,24 +72,50 @@ jobs: pull-requests: write issues: write steps: - - name: Input data required - if: contains(github.event.pull_request.labels.*.name, 'Input Data Changes') + - name: Additions to current input-data directory required + if: | + contains(github.event.pull_request.labels.*.name, 'Adds Input Data') && + !contains(github.event.pull_request.labels.*.name, 'Changes Existing Input Data') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 project-url: https://github.com/orgs/NOAA-EPIC/projects/18 github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: "Input Data Req'd" - field-value: 'Yes' + field-value: 'Adds' + - name: New input-data directory required + if: | + contains(github.event.pull_request.labels.*.name, 'Changes Existing Input Data') && + !contains(github.event.pull_request.labels.*.name, 'Adds Input Data') + uses: nipe0324/update-project-v2-item-field@v2.0.2 + with: + #project-url: https://github.com/orgs/ufs-community/projects/70 + project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + github-token: ${{ secrets.PR_PROJECT_TOKEN }} + field-name: "Input Data Req'd" + field-value: 'Create New' - name: No input data changes - if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) + if: | + (!contains(github.event.pull_request.labels.*.name, 'Changes Existing Input Data')) && + (!contains(github.event.pull_request.labels.*.name, 'Adds Input Data')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 project-url: https://github.com/orgs/NOAA-EPIC/projects/18 github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: "Input Data Req'd" - field-value: 'No' + field-value: 'None' + - name: Contradictory labels + if: | + contains(github.event.pull_request.labels.*.name, 'Adds Input Data') && + contains(github.event.pull_request.labels.*.name, 'Changes Existing Input Data') + uses: nipe0324/update-project-v2-item-field@v2.0.2 + with: + #project-url: https://github.com/orgs/ufs-community/projects/70 + project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + github-token: ${{ secrets.PR_PROJECT_TOKEN }} + field-name: "Input Data Req'd" + field-value: 'Unknown' priority-labels: name: Priority runs-on: ubuntu-latest @@ -98,8 +123,6 @@ jobs: contents: read pull-requests: write issues: write - env: - PRIORITY: '' steps: - name: Read Priority field uses: EndBug/project-fields@v2.1.0 @@ -112,17 +135,15 @@ jobs: project_url: https://github.com/orgs/NOAA-EPIC/projects/18 resource_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field + id: assign_priority run: | - priority="${{ steps.priority_field.outputs.values }}" - echo $priority - echo "PRIORITY=$priority" >> $GITHUB_ENV - echo $PRIORITY - echo $( [ $PRIORITY != 'Combine' ] ) + PRIORITY="${{ steps.priority_field.outputs.values }}" + echo "priority=$PRIORITY" >> $GITHUB_OUTPUT - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && !contains(github.event.pull_request.labels.*.name, 'Priority: High') && - ${{ env.PRIORITY != 'Combine' }} + steps.assign_priority.outputs.priority != 'Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -131,7 +152,9 @@ jobs: field-name: 'Priority' field-value: 'Normal' - name: Critical priority - if: "contains(github.event.pull_request.labels.*.name, 'Priority: Critical')" + if: | + contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && + steps.assign_priority.outputs.priority != 'Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -140,7 +163,9 @@ jobs: field-name: 'Priority' field-value: 'Critical' - name: High Priority - if: "(contains(github.event.pull_request.labels.*.name, 'Priority: High'))" + if: | + (contains(github.event.pull_request.labels.*.name, 'Priority: High')) && + steps.assign_priority.outputs.priority != 'Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -159,3 +184,73 @@ jobs: github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: 'Priority' field-value: 'Unknown' + subcomponent-labels: + name: Subcomponents involved + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + env: + SUBCOMPONENTS: '' + steps: + - name: UFSATM + if: contains(github.event.pull_request.labels.*.name, 'UFSATM') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} UFSATM" >> $GITHUB_ENV + - name: CCPP + if: contains(github.event.pull_request.labels.*.name, 'CCPP') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} CCPP" >> $GITHUB_ENV + - name: atmos_cubed_sphere + if: contains(github.event.pull_request.labels.*.name, 'A3S') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} A3S" >> $GITHUB_ENV + - name: UPP + if: contains(github.event.pull_request.labels.*.name, 'UPP') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} UPP" >> $GITHUB_ENV + - name: stochastic_physics + if: contains(github.event.pull_request.labels.*.name, 'SP') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} SP" >> $GITHUB_ENV + - name: AQM + if: contains(github.event.pull_request.labels.*.name, 'AQM') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} AQM" >> $GITHUB_ENV + - name: CMEPS + if: contains(github.event.pull_request.labels.*.name, 'CMEPS') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} CMEPS" >> $GITHUB_ENV + - name: CDEPS + if: contains(github.event.pull_request.labels.*.name, 'CDEPS') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} CDEPS" >> $GITHUB_ENV + - name: CICE + if: contains(github.event.pull_request.labels.*.name, 'CICE') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} CICE" >> $GITHUB_ENV + - name: GOCART + if: contains(github.event.pull_request.labels.*.name, 'GOC') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} GOC" >> $GITHUB_ENV + - name: MOM6 + if: contains(github.event.pull_request.labels.*.name, 'MOM') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} MOM" >> $GITHUB_ENV + - name: NOAHMP + if: contains(github.event.pull_request.labels.*.name, 'NMP') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} NMP" >> $GITHUB_ENV + - name: WW3 + if: contains(github.event.pull_request.labels.*.name, 'WW3') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} WW3" >> $GITHUB_ENV + - name: LM4 + if: contains(github.event.pull_request.labels.*.name, 'LM4') + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} LM4" >> $GITHUB_ENV + - name: Update subcomponents text + if: ${{ env.SUBCOMPONENTS != '' }} #Fix to use non-env var solution + uses: nipe0324/update-project-v2-item-field@v2.0.2 + with: + #project-url: https://github.com/orgs/ufs-community/projects/70 + project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + github-token: ${{ secrets.PR_PROJECT_TOKEN }} + field-name: "Subcomponent PRs" + field-value: ${{ env.SUBCOMPONENTS }} + - name: WM only + if: ${{ env.SUBCOMPONENTS == '' }} #Fix to use non-env var solution + uses: nipe0324/update-project-v2-item-field@v2.0.2 + with: + #project-url: https://github.com/orgs/ufs-community/projects/70 + project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + github-token: ${{ secrets.PR_PROJECT_TOKEN }} + field-name: "Subcomponent PRs" + field-value: 'WM only' diff --git a/AQM b/AQM index 5d19f59398..9265006502 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 5d19f593987dbf5609ad929956bdae3055a5a82f +Subproject commit 9265006502a859d2d3f21029fbb86107ba50ce0e diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index fe9e7bfdc8..9c8b26c2d8 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit fe9e7bfdc8792ff875e332914871ac16dee09120 +Subproject commit 9c8b26c2d870636f359f2ef62ef775639132b3ba diff --git a/UFSATM b/UFSATM index e3d536f820..25f0376b50 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit e3d536f8203ea9d2ab68375040015f53383ad6b5 +Subproject commit 25f0376b5084a1109639c6ab11665ba44fb808f7 diff --git a/WW3 b/WW3 index 91c20381ff..560cb9c0f9 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 91c20381ffe0357001a6626b3af1d37354b77cc8 +Subproject commit 560cb9c0f9fdc8ec96f746576dcac6503ed14eef diff --git a/tests/bl_date.conf b/tests/bl_date.conf index ba01c0ca7b..7df287c2a8 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251007 +export BL_DATE=20251024 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index e6df0c15c5..7b7885c593 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -547,7 +547,7 @@ export_mpas () export MPAS_RESOLUTION=120 export ATM_compute_tasks=4 - + #DJS2025 START: We don't need this for MPAS, but to setup the tests we do. CLEAN THIS UP!!! #Set defaults if ATMRES and DT_ATMOS are not set export ATMRES=${ATMRES:-"C96"} @@ -662,7 +662,7 @@ export_gfs_physics () export RRTMGP_NGPTSLW=128 export RRTMGP_NBANDSLW=16 export RRTMGP_NBANDSSW=14 - + # Microphysics export IMP_PHYSICS=8 export NWAT=6 @@ -729,7 +729,7 @@ export_gfs_physics () export KNOB_UGWP_TAUAMP=3.0e-3 export KNOB_UGWP_LHMET=200.0e3 export KNOB_UGWP_OROSOLV="'pss-1986'" - + export KNOB_UGWP_TAUAMP=3.0e-3 export DO_UGWP_V0_NST_ONLY=.false. @@ -883,6 +883,7 @@ export NTILES=6 export INPES=${INPES_dflt} export JNPES=${JNPES_dflt} export RESTART_INTERVAL=0 +export USE_FV3_ROUTEHANDLES=.false. export QUILTING=.true. export QUILTING_RESTART=.true. export WRITE_GROUP=1 @@ -1631,6 +1632,7 @@ export_mom6() { export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc export MOM6_USE_LI2016=True export MOM6_TOPOEDITS='' + export MOM6_HFREEZE=20.0 # since CPL_SLOW is set to DT_THERM, this should be always be false export MOM6_THERMO_SPAN=False export MOM6_USE_WAVES=True diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index b214796c83..650c30dc57 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -170,6 +170,12 @@ else if [ $CPLLND = .true. ]; then cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. fi + + # FV3 route handle files + if [[ $USE_FV3_ROUTEHANDLES = .true. ]]; then + cp ../${DEP_RUN}${SUFFIX}/routehandle_fb* ./ + fi + elif [[ $ULTRALOW == .true. ]]; then # Warm starts from ICs; all cases use 9km unstructured WW3 cp ${FV3_IC}/*.nc ./INPUT diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index f0ff8b5c48..2774cb4b85 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Oct 15 16:59:57 UTC 2025 +Sat Oct 25 08:34:53 UTC 2025 Start Operation Requirement Test -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/bit_base_bit_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 196.889662 - 0: The maximum resident set size (KB) = 2063056 + 0: The total amount of wall time = 253.521495 + 0: The maximum resident set size (KB) = 1543956 Test bit_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/dbg_base_dbg_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 1805.992477 - 0: The maximum resident set size (KB) = 2036284 + 0: The total amount of wall time = 885.761274 + 0: The maximum resident set size (KB) = 1536748 Test dbg_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/dcp_dcp +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 171.943147 - 0: The maximum resident set size (KB) = 1985416 + 0: The total amount of wall time = 223.926196 + 0: The maximum resident set size (KB) = 1520248 Test dcp PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/mpi_mpi +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 173.222561 - 0: The maximum resident set size (KB) = 1985880 + 0: The total amount of wall time = 225.546683 + 0: The maximum resident set size (KB) = 1529324 Test mpi PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/rst_rst +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 170.491135 - 0: The maximum resident set size (KB) = 2000924 + 0: The total amount of wall time = 230.863571 + 0: The maximum resident set size (KB) = 1539900 Test rst PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/std_base_std_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 170.587718 - 0: The maximum resident set size (KB) = 2010324 + 0: The total amount of wall time = 231.109422 + 0: The maximum resident set size (KB) = 1517664 Test std_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2100959/thr_thr +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2119503/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 = 174.039760 - 0: The maximum resident set size (KB) = 1990280 + 0: The total amount of wall time = 228.086647 + 0: The maximum resident set size (KB) = 1540740 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 15 18:26:27 UTC 2025 -Elapsed time: 01h:26m:30s. Have a nice day! +Sat Oct 25 09:38:38 UTC 2025 +Elapsed time: 01h:03m:46s. 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 08f86a8f99..d984ad8cce 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 @@ -Wed Oct 15 19:31:13 UTC 2025 +Sat Oct 25 07:10:58 UTC 2025 Start Operation Requirement Test -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3750763/dbg_base_dbg_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1566902/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 = 4413.118271 - 0: The maximum resident set size (KB) = 2212452 + 0: The total amount of wall time = 2317.960192 + 0: The maximum resident set size (KB) = 1660800 Test dbg_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3750763/rst_rst +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1566902/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 = 367.565357 - 0: The maximum resident set size (KB) = 2187016 + 0: The total amount of wall time = 583.802147 + 0: The maximum resident set size (KB) = 1643996 Test rst PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3750763/std_base_std_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1566902/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 = 372.914342 - 0: The maximum resident set size (KB) = 2188536 + 0: The total amount of wall time = 586.913019 + 0: The maximum resident set size (KB) = 1632260 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 15 21:20:30 UTC 2025 -Elapsed time: 01h:49m:18s. Have a nice day! +Sat Oct 25 08:34:52 UTC 2025 +Elapsed time: 01h:23m:55s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d7efb736f3..49d2dc0834 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Oct 15 15:04:58 UTC 2025 +Sat Oct 25 06:17:47 UTC 2025 Start Operation Requirement Test -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_1846976/bit_base_bit_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1443055/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 = 412.929104 - 0: The maximum resident set size (KB) = 1379476 + 0: The total amount of wall time = 608.916327 + 0: The maximum resident set size (KB) = 883220 Test bit_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_1846976/dcp_dcp +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1443055/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 = 313.119305 - 0: The maximum resident set size (KB) = 1224032 + 0: The total amount of wall time = 491.245939 + 0: The maximum resident set size (KB) = 877024 Test dcp PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_1846976/std_base_std_base +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1443055/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 = 314.339990 - 0: The maximum resident set size (KB) = 1210220 + 0: The total amount of wall time = 495.405151 + 0: The maximum resident set size (KB) = 865600 Test std_base PASS -baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_1846976/thr_thr +baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1443055/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 = 310.320597 - 0: The maximum resident set size (KB) = 1223476 + 0: The total amount of wall time = 494.507560 + 0: The maximum resident set size (KB) = 867304 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 15 15:55:54 UTC 2025 -Elapsed time: 00h:50m:57s. Have a nice day! +Sat Oct 25 07:10:57 UTC 2025 +Elapsed time: 00h:53m:10s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 789b8a5a4c..0817dea43b 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,10 +1,10 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -85810b42c593afa904c531fad1d31c79bd924d38 +97492dc15ca61685c8bc5f49ff3d3a0b3b930292 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,297 +40,286 @@ 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-20251014 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1205644 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3831611 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:29] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:30, 06:34](3333 MB) -PASS -- TEST 'cpld_control_gefs_intel' [00:27, 16:14](4126 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:06, 07:39](3924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:54] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:24, 15:07](1898 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:19, 16:32](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:01, 07:17](1067 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [16:29, 07:22](1923 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:41, 17:30](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:28, 13:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:27, 15:25](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:14] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:17, 20:11](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:42] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:01, 08:09](3366 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:36, 08:04](3369 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:00, 04:34](3248 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:53, 08:11](3385 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:32, 04:39](3265 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 07:33](3576 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:17, 07:57](3359 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:47, 06:46](3310 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:22, 08:10](3370 MB) - -PASS -- COMPILE 's2swal_intel' [13:27, 11:59] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [20:35, 08:24](3368 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [17:29, 04:54](3247 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:16, 08:07](3334 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:50](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:58, 07:10](1973 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:07](1972 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:17, 08:01](3370 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:35] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:06, 15:05](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:55, 07:21](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:15, 17:32](1893 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:36, 06:05](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:31, 02:10](2898 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:26, 01:30](2301 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:59, 01:25](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:59, 00:52](2117 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:49, 00:59](1457 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:59, 01:16](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:59, 01:00](2111 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:48, 00:45](1457 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:58, 00:51](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:58, 00:53](2040 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:43, 00:39](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:40] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:14, 24:02](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:42, 04:05](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:44, 02:34](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:50, 02:47](1586 MB) -PASS -- TEST 'control_latlon_intel' [12:40, 02:33](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:48, 02:36](1582 MB) -PASS -- TEST 'control_c48_intel' [16:55, 06:36](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:52, 06:10](719 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:52, 06:53](1599 MB) -PASS -- TEST 'control_c192_intel' [17:02, 07:23](1703 MB) -PASS -- TEST 'control_c384_intel' [34:33, 08:55](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [44:12, 09:23](1179 MB) -PASS -- TEST 'control_stochy_intel' [10:39, 01:53](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:36, 01:17](400 MB) -PASS -- TEST 'control_lndp_intel' [10:40, 01:54](638 MB) -PASS -- TEST 'control_iovr4_intel' [10:41, 02:41](632 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:03, 03:05](917 MB) -PASS -- TEST 'control_iovr5_intel' [10:41, 02:38](631 MB) -PASS -- TEST 'control_p8_intel' [11:27, 03:02](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:39, 03:15](1863 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:13, 03:03](1865 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:15, 03:02](1879 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:47, 03:04](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:51, 02:24](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [06:39, 02:00](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:04, 02:57](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:14, 01:53](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:37, 03:13](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:00, 02:54](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:01, 05:07](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:15, 04:12](1916 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:11, 03:10](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [11:40, 03:39](1866 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [11:22, 04:38](1872 MB) -PASS -- TEST 'regional_control_intel' [08:54, 05:13](879 MB) -PASS -- TEST 'regional_restart_intel' [04:55, 02:56](879 MB) -PASS -- TEST 'regional_decomp_intel' [08:52, 05:25](876 MB) -PASS -- TEST 'regional_2threads_intel' [08:54, 03:13](991 MB) -PASS -- TEST 'regional_noquilt_intel' [07:51, 05:10](1163 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 05:07](877 MB) -PASS -- TEST 'regional_wofs_intel' [09:51, 06:59](1607 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:25, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [13:19, 04:00](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:34] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:33, 04:12](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:21, 04:25](1191 MB) -PASS -- TEST 'rap_decomp_intel' [08:26, 04:16](1010 MB) -PASS -- TEST 'rap_2threads_intel' [08:10, 03:39](1090 MB) -PASS -- TEST 'rap_restart_intel' [11:22, 02:18](767 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:03, 04:01](1014 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 04:23](1013 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:21, 02:31](766 MB) -PASS -- TEST 'hrrr_control_intel' [08:14, 04:04](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:27, 04:04](1010 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 03:31](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:40, 02:15](762 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:10, 07:22](1009 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:42, 09:31](1972 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:09](1967 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:47] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [16:02, 06:39](963 MB) -PASS -- TEST 'control_ras_intel' [06:33, 03:33](668 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:16, 12:27](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:21, 08:02] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:18, 03:04](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:54, 05:02](873 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:49] ( 890 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:43, 02:37](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:51, 02:57](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:40, 03:35](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:38, 03:14](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [14:01, 04:52](1114 MB) -PASS -- TEST 'control_ras_debug_intel' [12:39, 03:15](831 MB) -PASS -- TEST 'control_diag_debug_intel' [06:45, 03:21](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [07:00, 03:09](1902 MB) -PASS -- TEST 'regional_debug_intel' [21:09, 18:35](938 MB) -PASS -- TEST 'rap_control_debug_intel' [09:36, 05:40](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:38, 05:36](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:37, 05:46](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:36, 05:49](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:37, 05:42](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:45, 05:56](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:37, 05:53](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:38, 05:56](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:41, 05:47](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:42, 05:38](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:41, 05:38](1201 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:40, 05:47](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:42, 09:07](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:41, 05:41](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:42, 05:51](1195 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:39, 09:53](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:28] ( 848 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [22:21, 14:45](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 07:49] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:28, 04:00](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 03:26](893 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:38, 03:22](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 03:12](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:35, 03:03](928 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:36, 03:26](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 01:56](727 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:33, 01:58](723 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:47] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:28, 03:14](1019 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:04, 01:20](1137 MB) -PASS -- TEST 'conus13km_decomp_intel' [09:15, 03:01](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:10, 02:04](690 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:24, 07:55] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:59, 04:13](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:34] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:38, 05:29](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:38, 05:25](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [29:33, 24:17](1102 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:37, 23:57](797 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:12, 13:29](1216 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:19, 24:12](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:19, 23:45](1169 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:28] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:38, 05:44](1102 MB) - -PASS -- COMPILE 'hafsw_intel' [13:28, 09:59] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:06, 04:33](711 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [18:18, 04:43](915 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:47, 03:51](1045 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:45](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 12:01](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:40, 13:10](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 05:31](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:05, 06:36](472 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [14:01, 03:08](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [39:31, 07:48](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:59, 03:46](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:10, 03:39](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:14, 04:34](546 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:53] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:27, 06:21](3337 MB) +PASS -- TEST 'cpld_control_gefs_intel' [49:57, 16:07](4118 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:18, 07:32](3922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:29, 13:43] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:13, 15:08](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:21, 16:38](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:04, 07:20](1072 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [16:21, 07:28](1932 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [42:42, 17:41](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:29, 13:48] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:26, 15:44](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:20, 05:05] ( 828 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 20:13](1943 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:42] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:02, 08:00](3368 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:31, 08:04](3362 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:51, 04:33](3244 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:54, 08:03](3385 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:25, 04:35](3264 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:15, 07:23](3579 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:55, 08:00](3356 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:28, 06:43](3303 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:30, 08:09](3363 MB) + +PASS -- COMPILE 's2swal_intel' [13:29, 11:54] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [32:46, 08:17](3366 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:19, 04:44](3247 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:12, 08:08](3335 MB) + +PASS -- COMPILE 's2sw_intel' [13:29, 11:19] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:42, 04:52](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:09, 07:05](1974 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:59, 04:59](1977 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 16:08] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:10, 07:56](3364 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:59] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:59, 15:18](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:54, 07:22](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:05, 17:51](1896 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:30, 06:07](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:26, 02:07](2898 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:04, 01:18](2313 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:56, 01:23](2114 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:56, 00:54](2109 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:45, 00:44](1458 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:56, 01:18](2112 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:56, 00:57](2111 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:43, 00:52](1459 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:56, 00:57](2041 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:54, 00:44](2042 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:43, 00:42](1395 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:42] ( 828 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:46, 23:59](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:39, 03:59](679 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:43, 02:30](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:46, 02:40](1584 MB) +PASS -- TEST 'control_latlon_intel' [09:36, 02:38](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:44, 02:43](1584 MB) +PASS -- TEST 'control_c48_intel' [13:50, 06:41](1600 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:48, 06:08](722 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 06:57](1600 MB) +PASS -- TEST 'control_c192_intel' [17:01, 07:31](1703 MB) +PASS -- TEST 'control_c384_intel' [37:34, 08:49](1997 MB) +PASS -- TEST 'control_c384gdas_intel' [48:14, 09:22](1174 MB) +PASS -- TEST 'control_stochy_intel' [10:39, 01:55](635 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:35, 01:08](405 MB) +PASS -- TEST 'control_lndp_intel' [10:38, 01:44](637 MB) +PASS -- TEST 'control_iovr4_intel' [10:39, 02:43](633 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:03, 03:01](919 MB) +PASS -- TEST 'control_iovr5_intel' [09:38, 02:44](634 MB) +PASS -- TEST 'control_p8_intel' [11:31, 03:05](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:38, 03:09](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:16, 02:58](1865 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [12:16, 03:04](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [12:43, 03:09](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [11:47, 02:19](2436 MB) +PASS -- TEST 'control_restart_p8_intel' [04:52, 01:55](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:40, 03:03](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:53](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:45, 03:01](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:46, 02:51](1947 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:59, 05:11](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:12, 04:01](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:04, 03:19](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [10:37, 03:39](1867 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:19, 04:39](1874 MB) +PASS -- TEST 'regional_control_intel' [08:55, 05:17](876 MB) +PASS -- TEST 'regional_restart_intel' [04:52, 02:49](882 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:20](880 MB) +PASS -- TEST 'regional_2threads_intel' [06:49, 03:13](987 MB) +PASS -- TEST 'regional_noquilt_intel' [07:50, 05:11](1163 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:16](870 MB) +PASS -- TEST 'regional_wofs_intel' [08:52, 06:44](1606 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:24, 09:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:14, 04:07](1889 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:37] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [09:12, 04:04](1015 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 04:29](1206 MB) +PASS -- TEST 'rap_decomp_intel' [08:30, 04:09](1011 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 03:45](1087 MB) +PASS -- TEST 'rap_restart_intel' [08:21, 02:16](765 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:13, 04:06](1014 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 04:12](1013 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 02:17](766 MB) +PASS -- TEST 'hrrr_control_intel' [10:08, 04:02](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:28, 04:01](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 03:28](1072 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:40, 02:19](758 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:07, 07:15](1007 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:45, 09:29](1972 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:40, 09:11](1965 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:48] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:59, 06:32](962 MB) +PASS -- TEST 'control_ras_intel' [07:35, 03:28](668 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:16, 12:37](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:14, 03:04](1862 MB) +PASS -- TEST 'regional_control_faster_intel' [07:51, 04:57](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:51] ( 891 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:44, 02:37](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:43, 02:54](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:38, 03:30](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:36, 03:16](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [14:01, 04:53](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [11:37, 03:20](831 MB) +PASS -- TEST 'control_diag_debug_intel' [11:45, 03:08](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [06:58, 03:04](1904 MB) +PASS -- TEST 'regional_debug_intel' [22:06, 18:32](955 MB) +PASS -- TEST 'rap_control_debug_intel' [07:38, 05:42](1193 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:36, 05:37](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:36, 05:42](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:36, 05:37](1194 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:38, 05:43](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:48, 05:58](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:37, 05:49](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:36, 05:53](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:38, 05:42](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:38, 05:38](1193 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:40, 05:40](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:37, 05:39](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 08:57](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:39, 05:40](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:38, 05:38](1195 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:37, 09:41](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:17, 03:30] ( 849 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:21, 14:36](1696 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:22, 07:47] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:31, 04:05](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:24, 03:27](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:52, 03:24](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:07, 03:08](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:35, 03:07](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:50, 03:27](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:08, 02:00](726 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:34, 02:00](723 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:48] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:25, 02:59](1020 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:09, 01:25](1144 MB) +PASS -- TEST 'conus13km_decomp_intel' [08:08, 02:58](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [04:07, 01:55](690 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:03] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:01, 04:11](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:33] ( 782 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:36, 05:36](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:47, 05:27](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [28:40, 24:02](1103 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:35, 23:46](787 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:12, 13:26](1199 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:22, 24:29](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:22, 24:05](1153 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 03:32] ( 782 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:38, 05:34](1105 MB) + +PASS -- COMPILE 'hafsw_intel' [13:26, 09:50] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:04, 04:27](711 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [17:16, 04:41](917 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:56, 03:49](1052 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:08, 11:34](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:02, 05:31](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:07, 06:41](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [16:02, 03:11](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:11, 07:46](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:50, 03:49](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:59, 03:38](495 MB) PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:42, 01:41](402 MB) -PASS -- TEST 'gnv1_nested_intel' [07:07, 03:47](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:22, 03:55] ( 1484 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:22, 14:16](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:29, 09:20] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:19, 07:10](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:29, 07:16](781 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:27, 09:28] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:42, 05:37](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:31, 08:51] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:11, 06:22](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:07, 06:25](734 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:03](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:30, 09:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 03:10](1565 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:30, 02:15](1567 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:28, 02:48](684 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:28, 02:50](685 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:26, 02:58](685 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:30, 03:08](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:28, 03:11](1564 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 02:53](685 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:33, 07:10](1368 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:28, 07:02](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:14](1565 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:29, 05:30](4521 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:37](4521 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:33, 09:43] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:07](1565 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:24, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:11](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:35, 00:59](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:37, 00:42](437 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:34, 09:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:37, 03:52](1911 MB) - -PASS -- COMPILE 'atml_intel' [17:30, 09:19] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:22, 03:25](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:04, 02:06](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:25, 04:26] ( 895 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:21, 05:42](1911 MB) - -PASS -- COMPILE 'atmw_intel' [12:25, 08:41] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:12, 02:09](1885 MB) - -PASS -- COMPILE 'atmaero_intel' [11:24, 08:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:56, 04:35](3240 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:40, 05:06](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:39, 05:15](3130 MB) - -PASS -- COMPILE 'atmaq_intel' [13:26, 07:50] ( 9 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [21:59, 15:42](2402 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [23:56, 18:39](2446 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 03:36] ( 873 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:11, 40:20](1972 MB) +PASS -- TEST 'gnv1_nested_intel' [09:09, 03:54](1697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:26, 09:29] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:36, 05:32](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:28, 08:49] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:06, 06:17](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:05, 06:25](736 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:29, 09:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:12](1567 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 02:06](1568 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 03:00](684 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:53](693 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:26, 03:01](687 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:11](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:26, 03:07](1564 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 02:48](683 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:33, 07:17](1365 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:28, 06:58](705 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:16](1567 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:30](4521 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:29, 05:31](4522 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:30, 09:37] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:26, 03:15](1567 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:18, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:41, 01:11](303 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:34, 00:56](437 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:47](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:29, 10:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:34, 03:53](1907 MB) + +PASS -- COMPILE 'atml_intel' [16:29, 09:24] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:19, 03:28](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 02:08](1030 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:24, 04:23] ( 896 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:20, 05:40](1910 MB) + +PASS -- COMPILE 'atmw_intel' [14:27, 08:38] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:09, 02:12](1881 MB) + +PASS -- COMPILE 'atmaero_intel' [12:26, 08:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:54, 04:30](3241 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:37, 05:14](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:39, 05:23](3130 MB) + +PASS -- COMPILE 'atmaq_intel' [09:22, 07:49] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [21:52, 15:31](2393 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [24:50, 18:29](2440 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:39] ( 866 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:00, 40:26](1973 MB) SYNOPSIS: -Starting Date/Time: 20251015 14:29:16 -Ending Date/Time: 20251015 17:08:57 -Total Time: 02h:40m:12s -Compiles Completed: 39/39 -Tests Completed: 200/200 +Starting Date/Time: 20251027 14:36:30 +Ending Date/Time: 20251027 17:05:51 +Total Time: 02h:29m:52s +Compiles Completed: 37/37 +Tests Completed: 193/193 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 49e984e0fc..3cf04ec0be 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,10 +1,10 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -f1ba054ca32e2c2b032d78c18b002220a7bffe00 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,312 +40,301 @@ 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/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251007 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_541784 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3550051 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:38] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:39, 06:36](2021 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:27] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [11:34, 10:04](1902 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:36, 11:06](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:29, 04:55](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:33, 04:59](1932 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:25, 11:52](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:35] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:24, 10:16](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:42] ( 1557 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:38, 12:54](1924 MB) - -PASS -- COMPILE 's2swa_intel' [10:10, 08:36] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:18](2068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:46, 05:14](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:33, 02:45](1597 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:33, 05:13](2073 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:34, 02:45](1450 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 06:06](2222 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:28, 05:11](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:11](2005 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:43, 05:17](2049 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [08:32, 05:33](2392 MB) - -PASS -- COMPILE 's2swal_intel' [10:10, 08:51] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:44, 05:16](2065 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:35, 02:46](1593 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:40, 05:19](1915 MB) - -PASS -- COMPILE 's2sw_intel' [10:10, 08:24] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:40, 03:10](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:39, 04:42](1849 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:32] ( 1447 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:43, 08:35](2087 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:34] ( 1447 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:40, 03:56](1952 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:49] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:32, 03:08](1968 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:10, 09:29] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:45, 04:53](2049 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:13] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:36, 10:02](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:33, 04:55](1088 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:29, 11:40](1909 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:25, 04:14](2864 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:24, 01:18](2868 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:22, 00:46](2288 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:19, 00:45](2093 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:20, 00:25](2087 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:18, 00:19](1431 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:19, 00:45](2088 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:18, 00:25](2089 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:20, 00:18](1435 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:18, 00:27](2021 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:17, 00:20](2022 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:20, 00:16](1371 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:26] ( 1557 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:39, 16:07](1951 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:33](526 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:21, 01:37](1423 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:25, 01:41](1428 MB) -PASS -- TEST 'control_latlon_intel' [03:19, 01:40](1423 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:42](1425 MB) -PASS -- TEST 'control_c48_intel' [06:22, 04:39](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:18](686 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:22, 04:47](1565 MB) -PASS -- TEST 'control_c192_intel' [06:25, 04:49](1687 MB) -PASS -- TEST 'control_c384_intel' [11:40, 09:44](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [13:12, 10:13](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:13](484 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](281 MB) -PASS -- TEST 'control_lndp_intel' [02:15, 01:07](477 MB) -PASS -- TEST 'control_iovr4_intel' [03:15, 01:43](484 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:19, 02:00](778 MB) -PASS -- TEST 'control_iovr5_intel' [03:16, 01:43](473 MB) -PASS -- TEST 'control_p8_intel' [03:30, 01:57](1710 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:33, 02:03](1716 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:26, 01:54](1714 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:25, 01:55](1731 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:26, 01:59](1745 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:26, 01:26](2425 MB) -PASS -- TEST 'control_restart_p8_intel' [03:21, 01:09](866 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:23, 01:54](1698 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:08](865 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:22, 01:58](1715 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:20, 02:10](1796 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:22, 03:16](1708 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 02:36](1766 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:27, 02:02](1723 MB) -PASS -- TEST 'merra2_thompson_intel' [04:26, 02:17](1715 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:57](1727 MB) -PASS -- TEST 'regional_control_intel' [05:18, 03:17](853 MB) -PASS -- TEST 'regional_restart_intel' [03:21, 01:49](875 MB) -PASS -- TEST 'regional_decomp_intel' [05:19, 03:24](868 MB) -PASS -- TEST 'regional_2threads_intel' [04:21, 02:35](994 MB) -PASS -- TEST 'regional_noquilt_intel' [05:21, 03:15](1166 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:20, 03:17](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:20, 03:18](862 MB) -PASS -- TEST 'regional_wofs_intel' [06:20, 04:18](1590 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:28, 02:32](1740 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 05:59] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:29, 02:38](864 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:42](1212 MB) -PASS -- TEST 'rap_decomp_intel' [04:20, 02:45](860 MB) -PASS -- TEST 'rap_2threads_intel' [04:23, 03:06](939 MB) -PASS -- TEST 'rap_restart_intel' [03:21, 01:26](728 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:27, 02:38](867 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:19, 02:43](861 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 01:26](725 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 02:34](857 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:37](859 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:19, 02:56](933 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:24](684 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:27, 04:39](853 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:12](1810 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:24, 05:42](1797 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:37] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:19, 04:12](814 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:15](518 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:26, 07:35](1504 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:29, 01:56](1705 MB) -PASS -- TEST 'regional_control_faster_intel' [05:21, 03:10](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:22] ( 905 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:34](1445 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 01:35](1447 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:05](649 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:53](648 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:53](956 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 01:55](654 MB) -PASS -- TEST 'control_diag_debug_intel' [03:17, 01:53](1504 MB) -PASS -- TEST 'control_debug_p8_intel' [03:24, 01:53](1743 MB) -PASS -- TEST 'regional_debug_intel' [12:25, 11:04](891 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 03:20](1035 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:19](1029 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:23](1039 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:27](1034 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:23](1048 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:33](1118 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:28](1038 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:28](1036 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:25](1029 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:24](1037 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:16](1030 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:25](1030 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:16, 05:25](1032 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 03:21](1043 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:21](1033 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:40](1040 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:08] ( 862 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:24, 08:34](1533 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:26] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:32, 02:33](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:26, 02:16](735 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:13](740 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:20, 02:40](798 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:34](800 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:18](735 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:23, 01:15](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:12](615 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:23] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:33, 01:54](1018 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:24, 00:56](1024 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:23, 01:52](1019 MB) -PASS -- TEST 'conus13km_restart_intel' [03:21, 01:07](885 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:24] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:25, 02:44](772 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:08] ( 795 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:16](911 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:13](910 MB) -PASS -- TEST 'conus13km_debug_intel' [15:25, 13:41](1071 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:21, 13:55](759 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:18, 12:38](1065 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:17, 14:21](1063 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:18, 13:54](1128 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:04] ( 795 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:21](958 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:44] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:28, 02:31](831 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:45, 03:52](1043 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:16, 02:18](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:30, 04:18](901 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:26, 07:12](934 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:34, 07:40](967 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:28, 03:15](455 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 03:52](463 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 01:36](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:52, 04:10](413 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:23, 02:22](480 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:24, 02:11](481 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:26, 02:40](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:52](419 MB) -PASS -- TEST 'gnv1_nested_intel' [04:41, 02:21](1694 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:25] ( 1502 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:32, 08:15](563 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:32, 04:54](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:35, 04:37](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:00] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:51, 03:24](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:30, 04:00](890 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:25, 04:00](856 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:38, 10:54](881 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:07](1549 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:22](1551 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:53](671 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:53](671 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:13, 01:54](666 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:02](1550 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 02:03](1551 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:51](672 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:29, 04:52](1358 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:26, 04:44](706 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:03](1554 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 04:00](4507 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:49](4513 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:29] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 04:06](1549 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:58] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:03](1557 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:32] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:39, 03:57](2019 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:12, 11:30] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:04](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:34, 11:09](1931 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:29, 04:55](1068 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:35, 04:58](1923 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:33, 11:49](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:12, 10:49] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:23, 10:16](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:47] ( 847 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:41, 12:41](1921 MB) + +PASS -- COMPILE 's2swa_intel' [11:11, 09:13] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:40, 05:03](2054 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:45, 05:03](2048 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:31, 02:47](1591 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:31, 05:03](2081 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:30, 02:46](1457 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:32, 05:55](2225 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:29, 04:55](2054 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:37, 04:00](2005 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:40, 05:00](2050 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [09:29, 05:30](2393 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:41] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:38, 05:00](2057 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:32, 02:48](1590 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 05:06](1899 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:17] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:33, 02:56](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:37, 04:31](1845 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:28] ( 846 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:40, 08:18](2089 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:15] ( 846 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:35, 03:50](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:45] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:31, 03:09](1963 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:13] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:41, 04:55](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:10, 11:15] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:35, 10:13](1912 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:36, 05:00](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:25, 11:57](1898 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:26, 04:17](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:24, 01:19](2873 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:21, 00:46](2275 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:19, 00:46](2082 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:19, 00:26](2094 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:18, 00:19](1430 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:18, 00:47](2088 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:19, 00:26](2080 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:18, 00:19](1434 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:17, 00:28](2019 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:18, 00:21](2021 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:17, 00:17](1371 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:28] ( 847 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:41, 16:10](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:18, 02:31](526 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:22, 01:36](1413 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:25, 01:42](1431 MB) +PASS -- TEST 'control_latlon_intel' [03:18, 01:40](1428 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 01:41](1424 MB) +PASS -- TEST 'control_c48_intel' [07:21, 04:40](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:22](686 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:21, 04:48](1575 MB) +PASS -- TEST 'control_c192_intel' [07:22, 04:53](1694 MB) +PASS -- TEST 'control_c384_intel' [12:42, 09:43](1975 MB) +PASS -- TEST 'control_c384gdas_intel' [13:55, 10:16](1186 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:13](477 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](282 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:09](477 MB) +PASS -- TEST 'control_iovr4_intel' [04:16, 01:42](481 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:17, 02:01](773 MB) +PASS -- TEST 'control_iovr5_intel' [03:15, 01:45](479 MB) +PASS -- TEST 'control_p8_intel' [03:29, 01:57](1711 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:30, 02:03](1715 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:25, 01:54](1724 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:25, 01:53](1738 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:26, 01:58](1738 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:25, 01:26](2429 MB) +PASS -- TEST 'control_restart_p8_intel' [03:21, 01:09](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:23, 01:53](1711 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:09](867 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:20, 01:57](1708 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:20, 02:10](1803 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:20, 03:17](1720 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:24, 02:34](1762 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:27, 02:01](1716 MB) +PASS -- TEST 'merra2_thompson_intel' [04:25, 02:16](1722 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:31, 03:58](1726 MB) +PASS -- TEST 'regional_control_intel' [05:21, 03:17](860 MB) +PASS -- TEST 'regional_restart_intel' [03:26, 01:49](875 MB) +PASS -- TEST 'regional_decomp_intel' [05:19, 03:28](869 MB) +PASS -- TEST 'regional_2threads_intel' [04:19, 02:34](1010 MB) +PASS -- TEST 'regional_noquilt_intel' [05:22, 03:18](1164 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:19, 03:17](867 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:19](856 MB) +PASS -- TEST 'regional_wofs_intel' [06:19, 04:14](1589 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:37, 02:34](1740 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 05:44] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:28, 02:38](862 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:49, 02:42](1209 MB) +PASS -- TEST 'rap_decomp_intel' [04:19, 02:48](863 MB) +PASS -- TEST 'rap_2threads_intel' [05:21, 03:06](941 MB) +PASS -- TEST 'rap_restart_intel' [03:22, 01:28](726 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:25, 02:37](863 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:20, 02:46](860 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:21, 01:25](724 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 02:35](853 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:40](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:18, 02:57](933 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:23](689 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:28, 04:38](856 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 05:56](1810 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:45](1802 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:29] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:19, 04:07](818 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:12](514 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 05:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:40, 07:36](1501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:36, 01:55](1713 MB) +PASS -- TEST 'regional_control_faster_intel' [05:26, 03:09](858 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:20] ( 906 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:23, 01:33](1440 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:17, 01:36](1443 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:06](645 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 01:54](650 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:34, 02:53](951 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 01:55](655 MB) +PASS -- TEST 'control_diag_debug_intel' [03:26, 01:49](1504 MB) +PASS -- TEST 'control_debug_p8_intel' [03:22, 01:51](1739 MB) +PASS -- TEST 'regional_debug_intel' [13:20, 11:08](897 MB) +PASS -- TEST 'rap_control_debug_intel' [05:18, 03:22](1034 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:17](1029 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:15](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:26](1039 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:25](1041 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:30](1114 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:29](1038 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:24](1033 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:23](1036 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:22](1041 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:19](1030 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 03:21](1034 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 05:26](1029 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 03:21](1033 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:24](1034 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:30, 05:46](1034 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:26] ( 863 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:22, 08:40](1536 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:27] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:32, 02:34](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:26, 02:16](737 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:13](739 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:20, 02:40](790 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:35](786 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:19, 02:18](746 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:21, 01:14](631 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:11](621 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:34, 01:52](1018 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:24, 00:58](1026 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:25, 01:54](1014 MB) +PASS -- TEST 'conus13km_restart_intel' [02:19, 01:06](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:27] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 02:47](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:12] ( 796 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:20](912 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:16](904 MB) +PASS -- TEST 'conus13km_debug_intel' [15:29, 13:56](1060 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 13:58](762 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:20, 12:44](1063 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:20, 14:13](1060 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:22, 13:42](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:06] ( 796 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:17](947 MB) + +PASS -- COMPILE 'hafsw_intel' [09:11, 07:48] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:29, 02:32](836 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:49, 03:50](1044 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:20](1057 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:29, 07:20](936 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:28, 03:14](451 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:32, 03:54](461 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:24, 01:36](381 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:52, 04:06](413 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:23](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:28, 02:11](487 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:51](408 MB) +PASS -- TEST 'gnv1_nested_intel' [04:42, 02:19](1694 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:37] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:49, 03:13](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:57] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:30, 03:53](885 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:27, 03:59](861 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:12] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:05](1548 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:22](1549 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:52](671 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:53](668 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:54](673 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:03](1550 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:03](1553 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:51](665 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:31, 04:53](1356 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:42](708 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:04](1550 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:46](4512 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:48](4511 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:09] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 04:07](1552 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 02:03](1554 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:20, 00:52](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:38](434 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:29](429 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:59](303 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:39](431 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](433 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:11, 06:04] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:32, 02:27](1777 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 07:41] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:36, 02:25](1777 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:26, 03:08](1771 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:32, 03:12](1766 MB) -PASS -- COMPILE 'atml_intel' [08:11, 06:16] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:27, 02:25](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:24](1021 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:18] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:35, 02:24](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:22, 01:24](1019 MB) -PASS -- COMPILE 'atml_debug_intel' [04:11, 02:47] ( 910 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:25, 03:21](1878 MB) +PASS -- COMPILE 'atml_debug_intel' [04:11, 02:51] ( 911 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:28, 03:17](1885 MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:36] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:19](1744 MB) +PASS -- COMPILE 'atmw_intel' [09:11, 08:05] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:20](1733 MB) -PASS -- COMPILE 'atmaero_intel' [07:11, 05:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:27, 02:40](1927 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:25, 03:09](1579 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:12](1592 MB) +PASS -- COMPILE 'atmaero_intel' [07:10, 05:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:39](1931 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:10](1588 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:26, 03:14](1587 MB) -PASS -- COMPILE 'atmaq_intel' [07:11, 05:28] ( 9 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:56, 12:33](2969 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:55, 14:37](2974 MB) +PASS -- COMPILE 'atmaq_intel' [07:11, 05:31] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [14:57, 12:40](2967 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:52, 14:34](2971 MB) -PASS -- COMPILE 'atmaq_debug_intel' [03:11, 02:06] ( 887 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:38, 25:27](2989 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:11] ( 880 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:46, 25:22](2986 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:25] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 05:59](791 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:14] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:05](788 MB) SYNOPSIS: -Starting Date/Time: 20251016 13:21:08 -Ending Date/Time: 20251016 14:37:35 -Total Time: 01h:16m:51s -Compiles Completed: 44/44 -Tests Completed: 205/205 +Starting Date/Time: 20251026 18:09:48 +Ending Date/Time: 20251026 19:24:43 +Total Time: 01h:15m:20s +Compiles Completed: 42/42 +Tests Completed: 198/198 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 1717e833ac..bffbde545e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,10 +1,10 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) 374373588e22cd86f1b8eb670d489c2967a6b40a CMEPS-interface/CMEPS (cmeps_v0.4.1-2324-g3743735) @@ -12,10 +12,10 @@ Submodule hashes used in testing: 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -26,427 +26,417 @@ 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: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251014 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2045715 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_718205 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 12:08] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:48, 12:01](2213 MB) -PASS -- TEST 'cpld_control_gefs_intel' [33:39, 16:16](3063 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [20:44, 05:09](2736 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [36:43, 15:51](3073 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 17:15] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:53, 19:12](2079 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:49, 21:04](2279 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:04, 08:01](1355 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:57, 09:01](2220 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:56, 23:10](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 16:53] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:42, 19:17](2066 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 04:04] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 21:29](1927 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 12:33] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:07, 12:17](2268 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:15, 11:29](2278 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:07, 06:13](1899 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:01, 11:56](2307 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:09, 06:12](1886 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:01, 10:33](2338 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:09, 11:46](2228 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:06, 11:28](2063 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:04, 12:22](2267 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [26:08, 14:32](2662 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:48, 09:15](2813 MB) - -PASS -- COMPILE 's2swal_intel' [15:10, 12:03] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [16:03, 13:07](2084 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:09, 06:22](1745 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:54, 07:16](2253 MB) - -PASS -- COMPILE 's2sw_intel' [14:10, 11:17] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:50, 11:31](2114 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:58, 06:15](2187 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:59] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:01, 12:58](2300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 03:48] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 06:30](2122 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 09:41] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:51, 04:20](2171 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:20] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:05, 11:51](2273 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:39] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:51, 17:06](2133 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:55, 07:58](1369 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:46, 20:02](1948 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [14:33, 07:49](3088 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:36, 02:21](3079 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:33, 01:25](2526 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:30, 01:16](2257 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:28, 00:43](2262 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:34](1583 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:31, 01:15](2255 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:31, 00:42](2254 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:34](1587 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:29, 00:43](2190 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:35](2182 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:30, 00:29](1535 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:35] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 27:46](1985 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:35] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [12:23, 03:23](833 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:22, 02:24](1717 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:24, 02:34](1745 MB) -PASS -- TEST 'control_latlon_intel' [10:21, 02:31](1728 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:23, 02:38](1706 MB) -PASS -- TEST 'control_c48_intel' [15:24, 07:16](1725 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:23, 06:41](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:24, 07:26](1724 MB) -PASS -- TEST 'control_c192_intel' [18:33, 07:38](1921 MB) -PASS -- TEST 'control_c384_intel' [18:39, 08:32](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [13:19, 08:36](1401 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:40](785 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:02](630 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:33](787 MB) -PASS -- TEST 'control_iovr4_intel' [04:19, 02:34](785 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:32, 03:02](1079 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:31](783 MB) -PASS -- TEST 'control_p8_intel' [04:48, 02:59](2008 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:49, 03:10](2017 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:42, 02:56](2016 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:43, 02:55](2039 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:41, 03:08](2044 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:43, 02:08](2401 MB) -PASS -- TEST 'control_restart_p8_intel' [03:41, 01:44](1277 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:56](2011 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:41, 01:43](1280 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:34, 03:02](2006 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:22](2037 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:35, 05:15](2024 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:46, 04:13](2076 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:43, 03:12](2024 MB) -PASS -- TEST 'merra2_thompson_intel' [05:43, 03:34](2019 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:32, 05:17](2010 MB) -PASS -- TEST 'regional_control_intel' [08:33, 05:22](1222 MB) -PASS -- TEST 'regional_restart_intel' [05:35, 02:52](1239 MB) -PASS -- TEST 'regional_decomp_intel' [08:32, 05:38](1215 MB) -PASS -- TEST 'regional_2threads_intel' [07:31, 04:00](1081 MB) -PASS -- TEST 'regional_noquilt_intel' [07:34, 05:21](1508 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:33, 05:20](1212 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:21](1224 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 06:48](2046 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:33] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:47, 04:12](2051 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 09:02] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [06:37, 04:10](1183 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:58, 04:11](1321 MB) -PASS -- TEST 'rap_decomp_intel' [10:31, 04:18](1166 MB) -PASS -- TEST 'rap_2threads_intel' [10:31, 04:40](1189 MB) -PASS -- TEST 'rap_restart_intel' [04:36, 02:16](1178 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:34, 04:08](1181 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 04:20](1174 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:35, 02:15](1183 MB) -PASS -- TEST 'hrrr_control_intel' [07:35, 03:57](1173 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:29, 04:06](1161 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:31, 04:22](1183 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1117 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:34, 07:37](1213 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 09:21](2117 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:21, 09:16](2191 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:30] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:35, 06:18](1157 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:20](863 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:27] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [14:48, 11:29](1796 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 08:49] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:45, 02:50](2015 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 04:53](1213 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 04:31] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:08](1749 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:24, 02:17](1760 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:19, 03:04](961 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:43](957 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:29, 04:11](1270 MB) -PASS -- TEST 'control_ras_debug_intel' [04:19, 02:42](965 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 02:42](1813 MB) -PASS -- TEST 'control_debug_p8_intel' [05:36, 02:40](2045 MB) -PASS -- TEST 'regional_debug_intel' [20:35, 18:12](1231 MB) -PASS -- TEST 'rap_control_debug_intel' [07:20, 04:48](1344 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:22, 04:42](1339 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:43](1341 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:18, 04:54](1338 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 04:52](1341 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:10](1430 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:03](1341 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:02](1348 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:48](1345 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:46](1341 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:43](1336 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:55](1338 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 07:55](1337 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:56](1356 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:52](1342 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:19](1353 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 02:48] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:39, 13:33](1803 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 08:35] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 03:56](1180 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:30, 03:33](1119 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:25](1111 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 04:00](1035 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:25, 03:49](1027 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:24, 03:35](1034 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:28, 01:54](1068 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](1028 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 08:41] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:51, 02:59](1466 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:18](1298 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:39, 03:01](1491 MB) -PASS -- TEST 'conus13km_restart_intel' [03:39, 01:45](1335 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:10, 08:30] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:30, 04:13](1126 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 02:54] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:18, 04:45](1222 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:46](1225 MB) -PASS -- TEST 'conus13km_debug_intel' [24:41, 22:22](1499 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:40, 22:26](1187 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:36, 19:35](1343 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:39, 22:59](1533 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:38, 23:01](1577 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 02:52] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:00](1283 MB) - -PASS -- COMPILE 'hafsw_intel' [19:10, 10:59] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:43](917 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:15, 05:14](1115 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 03:33](1168 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:56, 06:10](941 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:44, 28:36](963 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:34, 05:13](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:00](508 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:28, 02:32](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:07, 06:31](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:32, 03:29](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:32, 03:20](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:33, 03:52](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:06](400 MB) -PASS -- TEST 'gnv1_nested_intel' [05:56, 03:39](1858 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:10, 03:22] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:34, 12:38](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:10, 10:47] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:36, 15:13](742 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:37, 14:56](674 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 10:49] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:09, 10:39](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 11:14] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:40, 05:50](934 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:40, 05:56](921 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:50, 17:32](1335 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:24] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:03](2008 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 02:00](1954 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:46](1274 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:53](1263 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:49](1269 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:55](2010 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:59](2008 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:48](1277 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 07:15](1781 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:11, 07:02](1156 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:08](2005 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 05:07](4966 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:46](4969 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:43] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:52](1914 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:03] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:01](2010 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:04] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:00](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:39](307 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:23](303 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:12] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:33](633 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:17](505 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:30] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:50, 03:39](2091 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:46] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 11:18](2210 MB) +PASS -- TEST 'cpld_control_gefs_intel' [27:59, 15:42](3056 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [17:59, 05:09](2745 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [27:59, 15:57](3071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 15:14] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:54, 19:09](2080 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:03, 20:46](2275 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:58, 07:59](1371 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:03, 08:57](2206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:53, 23:11](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:38] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:38, 19:49](2068 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:05] ( 847 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:54, 21:26](1940 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:42] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:19, 12:30](2284 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:25, 11:57](2293 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:06, 06:10](1897 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:10, 11:50](2296 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:13, 06:08](1891 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:08, 10:26](2349 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:10, 11:45](2273 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:10, 11:20](2071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:18, 11:53](2297 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:08, 14:19](2662 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:32, 08:42](2823 MB) + +PASS -- COMPILE 's2swal_intel' [13:11, 11:59] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:15, 12:16](2127 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:11, 06:18](1734 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:07, 07:15](2255 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:13] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:59, 11:33](2098 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:07, 06:17](2184 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:09] ( 846 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:52, 13:08](2303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:40] ( 846 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:54, 06:28](2114 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:37] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:23](2167 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:19] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:54, 11:21](2287 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:47] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:56, 17:38](2122 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:57](1373 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:57, 19:56](1940 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:42, 07:49](3082 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:44, 02:27](3050 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:39, 01:27](2521 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:36, 01:14](2261 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:37, 00:42](2268 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:34](1587 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:15](2253 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:38, 00:42](2252 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:34](1586 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:36, 00:44](2184 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:29, 00:36](2184 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:28, 00:29](1537 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:45] ( 847 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:44, 27:09](1986 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:47] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:22](827 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:23](1718 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:34](1734 MB) +PASS -- TEST 'control_latlon_intel' [04:18, 02:29](1733 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:24, 02:32](1739 MB) +PASS -- TEST 'control_c48_intel' [09:24, 07:17](1729 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:38](850 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:24, 07:28](1726 MB) +PASS -- TEST 'control_c192_intel' [09:36, 07:37](1923 MB) +PASS -- TEST 'control_c384_intel' [11:23, 08:27](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [12:23, 08:39](1398 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:40](786 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:59](633 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:34](787 MB) +PASS -- TEST 'control_iovr4_intel' [04:19, 02:32](784 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 03:01](1082 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:30](784 MB) +PASS -- TEST 'control_p8_intel' [04:45, 02:59](2016 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:49, 03:09](2016 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:39, 02:54](2013 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:43, 02:53](2042 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:45, 03:03](2052 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:44, 02:06](2391 MB) +PASS -- TEST 'control_restart_p8_intel' [03:41, 01:45](1281 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:57](2010 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:41, 01:42](1282 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 03:02](2013 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:41, 03:19](2028 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:34, 05:12](2020 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:15](2076 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:41, 03:08](2029 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 03:32](2018 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:30, 04:53](2032 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:19](1224 MB) +PASS -- TEST 'regional_restart_intel' [04:32, 02:53](1239 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 05:34](1213 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 03:59](1093 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:15](1505 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:17](1225 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:17](1227 MB) +PASS -- TEST 'regional_wofs_intel' [08:33, 06:44](2041 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:31] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:47, 04:07](2053 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:47] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [06:35, 04:09](1179 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:09](1330 MB) +PASS -- TEST 'rap_decomp_intel' [06:35, 04:17](1173 MB) +PASS -- TEST 'rap_2threads_intel' [06:35, 04:41](1190 MB) +PASS -- TEST 'rap_restart_intel' [04:32, 02:14](1173 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:37, 04:08](1181 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:35, 04:19](1170 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:34, 02:14](1173 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:58](1172 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:05](1147 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 04:19](1171 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:07](1137 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:32, 07:35](1225 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:19, 09:25](2117 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 09:00](2182 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:37] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:30, 06:12](1161 MB) +PASS -- TEST 'control_ras_intel' [05:18, 03:20](868 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:37] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [13:43, 11:31](1788 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:32] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:49](2017 MB) +PASS -- TEST 'regional_control_faster_intel' [06:35, 04:51](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:12] ( 906 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:09](1751 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:15](1756 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:02](961 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:40](959 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:14](1272 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:46](978 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:44](1817 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 02:36](2048 MB) +PASS -- TEST 'regional_debug_intel' [19:33, 17:17](1225 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:52](1341 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:49](1341 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:52](1345 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:47](1338 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:53](1326 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:18, 05:16](1428 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:53](1340 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:56](1338 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:56](1340 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 04:50](1351 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:43](1335 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:13, 04:56](1344 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 08:13](1350 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:00, 04:51](1342 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:50, 04:54](1342 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:26](1352 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:01] ( 863 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:38, 13:05](1819 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:28] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 03:53](1179 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:30, 03:31](1116 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:23](1098 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:09, 03:58](1021 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 03:49](1014 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:36](1029 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:38, 01:54](1067 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:51](1052 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:33] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:08, 02:59](1463 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:05, 01:18](1293 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:42, 03:01](1484 MB) +PASS -- TEST 'conus13km_restart_intel' [03:44, 01:42](1333 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:30] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:14](1122 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:48] ( 796 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:56](1222 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:46](1213 MB) +PASS -- TEST 'conus13km_debug_intel' [24:37, 22:22](1499 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [30:39, 22:24](1200 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:49, 19:41](1338 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:51, 22:20](1524 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:52, 22:23](1560 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:47] ( 796 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:00](1280 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:31] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:49, 03:41](921 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:39, 05:17](1105 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:35, 03:33](1168 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:53, 28:49](962 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:41, 05:11](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:50, 05:59](510 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:33](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:10, 06:29](428 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:33, 03:30](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:17](526 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:07](402 MB) +PASS -- TEST 'gnv1_nested_intel' [05:53, 03:36](1857 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:40] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:12, 10:21](672 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:43] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:46, 05:51](933 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:43, 05:55](918 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:26] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:01](2002 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:55](1955 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:52](1269 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1264 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:49](1264 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:05](2001 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](2012 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:47](1266 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:30, 07:02](1782 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:56](1162 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:02](2005 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:52](4965 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:51](4968 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:51] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:42](1917 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:22] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 03:12](1999 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:05] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:52](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:34](307 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:23](307 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:18] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:35, 00:33](629 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:17](521 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:20] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:56, 03:40](2094 MB) PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:50] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:44](2099 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:36] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:39, 03:14](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 01:50](1131 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:51] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:41, 04:44](1869 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:24] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:38, 01:56](2032 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:52] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:45, 04:14](2112 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:53](1894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:59](1884 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:35] ( 9 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_intel' [18:40, 15:12](2924 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [21:16, 18:36](2927 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 02:55] ( 887 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:15, 40:18](2931 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:18] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:37](1189 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:29, 04:07](1120 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 03:59] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:29, 04:39](1129 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:09] -PASS -- TEST 'control_c48_gnu' [11:24, 09:27](1537 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:49](604 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:43](611 MB) -PASS -- TEST 'control_p8_gnu' [06:43, 04:21](1541 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:38, 04:15](1551 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:26](650 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:52] -PASS -- TEST 'rap_control_gnu' [08:33, 05:54](944 MB) -PASS -- TEST 'rap_decomp_gnu' [08:32, 05:58](948 MB) -PASS -- TEST 'rap_2threads_gnu' [09:31, 06:56](1019 MB) -PASS -- TEST 'rap_restart_gnu' [04:32, 03:05](678 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 05:54](950 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:32, 05:59](948 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:34, 03:05](683 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:46](953 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:41](941 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:29, 06:35](1011 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:48](954 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 03:01](685 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:59](771 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:32, 10:59](939 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:43] -PASS -- TEST 'control_csawmg_gnu' [10:31, 08:27](852 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:40] -PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:33](1379 MB) -PASS -- TEST 'regional_debug_gnu' [10:33, 08:21](874 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:30](959 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:27](966 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:35](969 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](973 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:43](1045 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:59](954 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:31](961 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:28](600 MB) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:42](2108 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:41] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:47, 03:13](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:35, 01:50](1120 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:48] ( 911 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:45, 04:52](1874 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:36] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:55](2037 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 09:01] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:11](2105 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:52](1891 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:57](1896 MB) + +PASS -- COMPILE 'atmaq_intel' [10:11, 08:31] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [17:47, 15:02](2920 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [21:26, 18:25](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:04] ( 880 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:23, 39:56](2935 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:17] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:33](1185 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 04:00] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:29, 04:07](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:11, 04:08] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:31, 04:40](1124 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:01] +PASS -- TEST 'control_c48_gnu' [11:24, 09:34](1535 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:50](604 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:40](610 MB) +PASS -- TEST 'control_p8_gnu' [06:43, 04:19](1552 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:37, 04:14](1551 MB) +PASS -- TEST 'control_flake_gnu' [07:18, 05:22](652 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:55] +PASS -- TEST 'rap_control_gnu' [07:30, 05:53](943 MB) +PASS -- TEST 'rap_decomp_gnu' [07:27, 05:54](950 MB) +PASS -- TEST 'rap_2threads_gnu' [08:33, 06:54](1020 MB) +PASS -- TEST 'rap_restart_gnu' [04:31, 03:03](677 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:30, 05:51](944 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:27, 05:58](949 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:30, 03:01](687 MB) +PASS -- TEST 'hrrr_control_gnu' [07:30, 05:42](950 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:26, 05:41](940 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:28, 06:34](1012 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:25, 05:42](950 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:57](681 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:57](770 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:55](943 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 03:42] +PASS -- TEST 'control_csawmg_gnu' [10:30, 08:22](865 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:46] +PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:33](1377 MB) +PASS -- TEST 'regional_debug_gnu' [10:31, 08:15](871 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:18, 02:30](957 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:30](962 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:32](973 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:17, 02:31](969 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:27, 02:43](1048 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 04:00](953 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 02:30](961 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:27](598 MB) PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:37](597 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:35, 01:43](1546 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:18, 02:30](963 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:33](964 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:16](977 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:38](1563 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:28](964 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:33](963 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:14](979 MB) -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:08] -PASS -- TEST 'control_wam_debug_gnu' [08:39, 06:34](1401 MB) +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:08] +PASS -- TEST 'control_wam_debug_gnu' [08:37, 06:24](1400 MB) -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:28] -PASS -- TEST 'control_csawmg_debug_gnu' [04:33, 02:23](836 MB) +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:40] +PASS -- TEST 'control_csawmg_debug_gnu' [04:31, 02:16](838 MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:45] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:04](798 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:01](804 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:28, 06:07](852 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:27, 05:54](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:08](804 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:25, 02:40](647 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:39](658 MB) -PASS -- TEST 'conus13km_control_gnu' [06:50, 04:53](1023 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:40, 02:05](1017 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:42, 04:53](1030 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:39, 02:43](733 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:44] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:04](796 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:26, 05:00](805 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:26, 06:02](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:25, 05:54](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:24, 05:04](804 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:26, 02:37](648 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:36](658 MB) +PASS -- TEST 'conus13km_control_gnu' [06:50, 04:49](1026 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:40, 02:01](1014 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:41, 04:56](1033 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:38, 02:42](721 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:31, 05:42](827 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 11:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 05:39](828 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:31](804 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:26](818 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:39, 10:50](1045 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [12:39, 11:01](772 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:38, 08:57](1034 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:37, 11:11](1048 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:36, 11:12](1116 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:28](803 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:23](810 MB) +PASS -- TEST 'conus13km_debug_gnu' [13:35, 11:11](1044 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:36, 10:49](768 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:39, 08:57](1030 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:38, 11:17](1038 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:39, 11:02](1115 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:50] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:40](835 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:34](832 MB) -PASS -- COMPILE 's2swa_gnu' [18:10, 16:39] -PASS -- TEST 'cpld_control_p8_gnu' [13:08, 11:04](1701 MB) +PASS -- COMPILE 's2swa_gnu' [18:11, 16:51] +PASS -- TEST 'cpld_control_p8_gnu' [13:06, 11:06](1699 MB) -PASS -- COMPILE 's2s_gnu' [18:10, 16:17] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:55, 09:51](1651 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 15:35] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:56, 09:48](1641 MB) -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:03] -PASS -- TEST 'cpld_debug_p8_gnu' [09:02, 06:59](1687 MB) +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:51] +PASS -- TEST 'cpld_debug_p8_gnu' [08:52, 06:43](1696 MB) -PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 15:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:54, 17:43](1598 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:47] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:46, 17:41](1600 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:43] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:48, 10:58](1546 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:29] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:43, 10:53](1551 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:57] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 03:17](1557 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:34] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:26](1555 MB) -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:10, 03:29] -PASS -- TEST 'control_gfs_mpas_gnu' [02:26, 00:51](6354 MB) +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 03:06] +PASS -- TEST 'control_gfs_mpas_gnu' [02:26, 00:47](6336 MB) -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:10, 08:45] ( 1 warnings 404 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:30, 01:27](1171 MB) +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 08:32] ( 1 warnings 404 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:27, 01:24](1169 MB) SYNOPSIS: -Starting Date/Time: 20251014 22:45:16 -Ending Date/Time: 20251015 00:48:24 -Total Time: 02h:03m:45s -Compiles Completed: 65/65 -Tests Completed: 278/278 +Starting Date/Time: 20251026 22:08:52 +Ending Date/Time: 20251027 00:01:15 +Total Time: 01h:52m:47s +Compiles Completed: 63/63 +Tests Completed: 272/272 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 0a1ae757a2..b0bea91528 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,10 +1,10 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,492 +40,401 @@ 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-20251014 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1940489 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3938478 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:04] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:03, 14:01](2160 MB) -PASS -- TEST 'cpld_control_gefs_intel' [38:03, 23:59](3117 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [26:27, 10:12](2820 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [56:11, 28:30](3159 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:25] ( 1 warnings 1043 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_iau_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:15, 19:05](1926 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:34] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [59:42, 29:32](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:02] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:26, 18:31](1995 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:38] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:41, 10:03](2267 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:18, 09:36](2276 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:16, 06:38](1965 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [51:10, 24:28](2292 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:30, 04:28](1841 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [44:08, 09:47](2389 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [36:15, 09:32](2256 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [42:03, 15:46](2150 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:18, 09:29](2275 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [49:56, 24:24](2945 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:34, 09:38](2968 MB) - -PASS -- COMPILE 's2swal_intel' [14:11, 12:32] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [17:16, 09:41](2232 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [25:36, 05:45](1920 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [34:11, 07:54](2241 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:38] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:55, 07:51](2052 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 08:50](2162 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:08] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:02, 12:10](2290 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:15] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:51, 10:21](2080 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:11] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:07, 05:14](2131 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:29] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [54:11, 22:35](2271 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [33:11, 31:38] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:04, 15:26](2097 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:07, 06:40](1419 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:59, 16:37](2010 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [07:44, 06:02](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:44, 02:17](3046 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:41, 01:07](2478 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:59](2238 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:30, 02:01](2241 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:29, 01:28](1552 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:29, 01:01](2231 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:33](2245 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:25](1553 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:25, 00:36](2166 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:23, 00:27](2158 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:28, 00:21](1504 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:41] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:08, 22:37](2068 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:39] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [26:21, 04:32](729 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:04](1618 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:12](1626 MB) -PASS -- TEST 'control_latlon_intel' [04:22, 02:08](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:09](1616 MB) -PASS -- TEST 'control_c48_intel' [08:24, 06:35](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 05:54](842 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:23, 06:40](1704 MB) -PASS -- TEST 'control_c192_intel' [16:36, 14:34](1815 MB) -PASS -- TEST 'control_c384_intel' [16:22, 13:50](2034 MB) -PASS -- TEST 'control_c384gdas_intel' [14:23, 07:48](1528 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:26](681 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:52](556 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:24](680 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:10](674 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:26, 03:41](975 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:09](676 MB) -PASS -- TEST 'control_p8_intel' [13:07, 09:05](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:00, 04:37](1915 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:34](1903 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:52, 03:30](1933 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:59, 02:35](1942 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:43, 02:46](2437 MB) -PASS -- TEST 'control_restart_p8_intel' [03:58, 01:47](1211 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:00, 08:25](1909 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 02:03](1216 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:35](1895 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:57](1990 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:37, 04:23](1905 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:00, 03:35](1987 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:44](1912 MB) -PASS -- TEST 'merra2_thompson_intel' [05:57, 03:43](1921 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [09:02, 06:42](1925 MB) -PASS -- TEST 'regional_control_intel' [09:29, 07:59](1197 MB) -PASS -- TEST 'regional_restart_intel' [04:22, 02:29](1204 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:41](1190 MB) -PASS -- TEST 'regional_2threads_intel' [10:27, 08:12](1106 MB) -PASS -- TEST 'regional_noquilt_intel' [10:31, 08:28](1510 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:23, 04:32](1199 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:32](1198 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 05:44](2105 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:11, 08:35] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [33:57, 05:26](1957 MB) - -PASS -- COMPILE 'rrfs_intel' [09:10, 08:08] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [34:47, 06:43](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [35:57, 08:24](1416 MB) -PASS -- TEST 'rap_decomp_intel' [31:50, 03:48](1062 MB) -PASS -- TEST 'rap_2threads_intel' [36:49, 08:41](1184 MB) -PASS -- TEST 'rap_restart_intel' [03:51, 01:57](1083 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:49, 03:36](1114 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:46, 03:50](1066 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:51, 01:58](1106 MB) -PASS -- TEST 'hrrr_control_intel' [31:40, 03:31](1075 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [31:40, 03:33](1055 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [32:51, 05:17](1164 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:24, 01:52](1064 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:55, 09:38](1207 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:18, 09:39](2016 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:19, 09:33](2190 MB) - -PASS -- COMPILE 'csawmg_intel' [09:10, 07:42] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:26, 05:24](1079 MB) -PASS -- TEST 'control_ras_intel' [12:22, 10:23](828 MB) - -PASS -- COMPILE 'wam_intel' [13:10, 07:42] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [11:36, 09:58](1685 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 07:54] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:52, 04:24](1911 MB) -PASS -- TEST 'regional_control_faster_intel' [05:25, 04:06](1197 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:32] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:22, 04:13](1635 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 01:54](1642 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:38](857 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:15, 02:20](856 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:22, 06:55](1163 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:22](862 MB) -PASS -- TEST 'control_diag_debug_intel' [04:25, 02:55](1719 MB) -PASS -- TEST 'control_debug_p8_intel' [06:34, 04:59](1947 MB) -PASS -- TEST 'regional_debug_intel' [16:27, 14:27](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [09:17, 07:42](1248 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:19, 04:00](1235 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 04:01](1241 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 04:10](1239 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 04:04](1248 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:27, 09:18](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:16, 06:14](1247 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:16, 06:08](1241 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:02](1252 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:17, 09:30](1251 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:18, 09:36](1248 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:05](1243 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:18, 11:51](1246 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:18, 07:41](1246 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 04:05](1245 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 02:23] ( 862 warnings 396 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 07:39] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:09](1296 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:42, 04:04](1060 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 03:54](1066 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:35, 03:39](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:31](1055 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:50, 06:00](996 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:45, 02:11](1001 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:17, 03:04](984 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 07:54] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:50, 02:29](1515 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:37, 03:13](1336 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:35, 02:31](1550 MB) -PASS -- TEST 'conus13km_restart_intel' [04:36, 01:32](1284 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:02] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:19](1115 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:24] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 04:05](1124 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:19, 13:35](1118 MB) -PASS -- TEST 'conus13km_debug_intel' [20:30, 18:34](1567 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:33, 18:30](1167 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:26, 19:51](1370 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [20:25, 18:46](1568 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:27, 18:40](1628 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:14] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 04:12](1214 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 10:58] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:40, 03:17](1038 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:12, 05:17](1220 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:21, 03:37](1292 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:48, 05:40](1082 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:58, 14:22](1128 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:58, 16:50](1150 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:42, 10:02](594 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:55, 11:06](613 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:35, 02:12](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:27, 10:44](502 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:03](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:35, 02:52](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:39, 05:40](659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:21, 00:52](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:46] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 10:42](637 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:10, 10:48] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:43, 17:44](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:43, 18:15](834 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 10:47] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:34, 21:00](923 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:11, 18:48] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:40, 05:01](1089 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:38, 05:09](1086 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:42](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:10, 05:48] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:47](1863 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:33](1820 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:13](1115 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:16](1120 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:17](1120 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:25](1869 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:28](1863 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:16](1116 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:49](1711 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:47, 10:37](1194 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:25](1871 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:15, 07:10](4830 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:53](4832 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:04] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:25](1782 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:32] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:23](1874 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:45] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 01:19](334 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:37](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:49](555 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:03] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:52, 03:15](2042 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:11, 16:09] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 05:29](2060 MB) - -PASS -- COMPILE 'atml_intel' [19:11, 17:13] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:37](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 01:42](1200 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 03:16] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:53, 05:03](1909 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 10:15] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:54, 01:56](1945 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 08:06] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:45, 04:20](2015 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:21](1795 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:33](1804 MB) - -PASS -- COMPILE 'atmaq_intel' [12:11, 07:48] ( 9 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_intel' [16:27, 13:53](2938 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [19:19, 16:10](2943 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:10, 02:39] ( 887 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [33:16, 30:58](2960 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 07:40] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:24, 09:34](1083 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 03:41] -PASS -- TEST 'control_c48_gnu' [09:29, 07:42](1584 MB) -PASS -- TEST 'control_stochy_gnu' [04:20, 02:39](590 MB) -PASS -- TEST 'control_ras_gnu' [05:17, 03:40](598 MB) -PASS -- TEST 'control_p8_gnu' [05:59, 03:53](1551 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:38, 06:13](1559 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 05:16](634 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:45] -PASS -- TEST 'rap_control_gnu' [05:48, 04:07](940 MB) -PASS -- TEST 'rap_decomp_gnu' [05:32, 04:08](942 MB) -PASS -- TEST 'rap_2threads_gnu' [07:45, 03:36](1001 MB) -PASS -- TEST 'rap_restart_gnu' [03:51, 02:09](671 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:38, 04:06](940 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:38, 04:14](942 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:56, 02:10](677 MB) -PASS -- TEST 'hrrr_control_gnu' [13:51, 10:35](944 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [13:32, 10:30](924 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:47, 03:34](1001 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [13:35, 10:12](940 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:22, 02:05](672 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:24, 02:04](759 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [17:53, 14:28](937 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:13] -PASS -- TEST 'control_csawmg_gnu' [10:34, 07:36](842 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:10, 13:09] -PASS -- TEST 'control_diag_debug_gnu' [04:38, 01:15](1371 MB) -PASS -- TEST 'regional_debug_gnu' [08:31, 06:25](887 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 01:58](951 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 01:57](945 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 03:08](948 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:55](952 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:25, 02:07](1037 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:10](948 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:18, 04:07](951 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:08](585 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:17](577 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:17](1533 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:54](949 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:00](952 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:50, 03:15](956 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 01:46] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:03](1391 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 02:58] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:48](822 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:25] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:29, 04:30](794 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:38, 06:21](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:47, 03:51](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:56, 03:49](833 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 04:37](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:47, 02:26](650 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:17, 02:23](647 MB) -PASS -- TEST 'conus13km_control_gnu' [08:48, 06:46](1034 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:40, 01:51](1017 MB) -PASS -- TEST 'conus13km_decomp_gnu' [05:49, 04:05](1038 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:36, 02:14](761 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 09:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:34, 04:20](820 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:11, 15:58] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:04](802 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 01:57](797 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:32, 08:29](1050 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:29, 08:41](776 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [18:28, 16:32](1033 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:25, 09:07](1059 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [26:27, 24:12](1110 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [17:11, 15:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:03](829 MB) - -PASS -- COMPILE 's2swa_gnu' [18:10, 16:39] -PASS -- TEST 'cpld_control_p8_gnu' [13:35, 11:07](1719 MB) - -PASS -- COMPILE 's2s_gnu' [18:11, 16:40] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:12, 19:13](1642 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:16] -PASS -- TEST 'cpld_debug_p8_gnu' [09:06, 06:36](1733 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 16:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [18:07, 15:55](1590 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:02] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:51, 09:35](1598 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:44](1605 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:10, 02:50] -PASS -- TEST 'control_gfs_mpas_gnu' [02:19, 00:35](6405 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:27] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:03, 09:08](2165 MB) +PASS -- TEST 'cpld_control_gefs_intel' [39:49, 15:46](3133 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [21:17, 05:21](2824 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [28:25, 14:48](3163 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:20] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [30:20, 17:28](2029 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:33, 18:54](2347 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:30, 07:37](1354 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [17:45, 08:58](2222 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:15, 18:54](1927 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:37] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:40, 17:44](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:43] ( 847 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:14, 18:16](1997 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 12:38] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:20, 09:42](2262 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:09, 09:22](2268 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:17, 04:33](1959 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:09, 09:18](2279 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:17, 04:34](1838 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:05, 09:34](2386 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:06, 09:10](2249 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:06, 08:20](2145 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:08, 09:10](2261 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [28:48, 15:42](2948 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:32](2962 MB) + +PASS -- COMPILE 's2swal_intel' [14:10, 12:26] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [26:08, 09:46](2233 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:26, 04:30](1929 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:04, 07:33](2229 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 11:51] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:55, 08:46](2049 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:03, 06:59](2174 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:58] ( 846 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:06, 12:08](2291 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:31] ( 846 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:49, 07:04](2084 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 08:22] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:00, 05:49](2126 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:14] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:03, 09:09](2259 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:12] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:00, 15:53](2103 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:14, 07:47](1411 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:06, 16:23](2000 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [16:36, 07:15](3052 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [10:39, 02:56](3038 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:54, 01:04](2478 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [09:29, 02:25](2242 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [07:23, 01:47](2243 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:27, 00:27](1550 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:24, 01:54](2237 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:27, 00:46](2244 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:29](1553 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2170 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:25, 01:16](2158 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:20](1507 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:43] ( 847 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:14, 22:26](2070 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 08:52] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [17:19, 03:00](724 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:21, 02:11](1614 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:27, 02:20](1622 MB) +PASS -- TEST 'control_latlon_intel' [15:18, 02:09](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:21, 02:13](1615 MB) +PASS -- TEST 'control_c48_intel' [18:25, 06:32](1714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:24, 05:57](842 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [18:22, 06:40](1722 MB) +PASS -- TEST 'control_c192_intel' [08:32, 06:32](1814 MB) +PASS -- TEST 'control_c384_intel' [10:12, 07:12](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [12:11, 07:41](1509 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:29](679 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:24, 00:52](543 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:20](680 MB) +PASS -- TEST 'control_iovr4_intel' [04:19, 02:08](676 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:40, 02:33](974 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:08](672 MB) +PASS -- TEST 'control_p8_intel' [05:04, 02:32](1908 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 02:46](1911 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:35](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:47, 02:31](1931 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:53, 03:11](1938 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:41, 02:18](2427 MB) +PASS -- TEST 'control_restart_p8_intel' [04:54, 02:03](1228 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:42, 03:22](1900 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:12](1204 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:42, 03:45](1905 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:41, 03:54](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 04:54](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:52, 04:29](1979 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:53, 02:43](1916 MB) +PASS -- TEST 'merra2_thompson_intel' [06:53, 04:02](1916 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [07:51, 04:45](1916 MB) +PASS -- TEST 'regional_control_intel' [10:27, 07:37](1192 MB) +PASS -- TEST 'regional_restart_intel' [06:25, 04:09](1196 MB) +PASS -- TEST 'regional_decomp_intel' [09:25, 06:54](1183 MB) +PASS -- TEST 'regional_2threads_intel' [07:24, 04:29](1092 MB) +PASS -- TEST 'regional_noquilt_intel' [08:29, 06:36](1499 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:26, 06:48](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:26, 06:15](1189 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 05:46](2094 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [14:11, 08:17] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:59, 03:53](1952 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 08:23] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [05:48, 03:35](1114 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:25](1440 MB) +PASS -- TEST 'rap_decomp_intel' [05:47, 03:47](1061 MB) +PASS -- TEST 'rap_2threads_intel' [06:48, 04:15](1157 MB) +PASS -- TEST 'rap_restart_intel' [03:53, 01:56](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:46, 03:42](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:47, 03:45](1070 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:54, 01:59](1087 MB) +PASS -- TEST 'hrrr_control_intel' [05:51, 03:23](1080 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:33](1061 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:45, 04:06](1137 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:23, 01:52](1058 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:55, 06:30](1197 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:19, 11:55](2014 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:20, 10:41](2214 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 07:41] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:27, 05:34](1073 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:55](846 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 08:17] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [12:39, 10:53](1684 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 08:30] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:04, 02:27](1910 MB) +PASS -- TEST 'regional_control_faster_intel' [07:27, 05:08](1195 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 03:47] ( 906 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 01:56](1644 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:01](1647 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:20, 02:38](863 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:15, 02:24](862 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:27, 04:41](1162 MB) +PASS -- TEST 'control_ras_debug_intel' [04:17, 02:23](860 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:24](1705 MB) +PASS -- TEST 'control_debug_p8_intel' [05:34, 03:04](1936 MB) +PASS -- TEST 'regional_debug_intel' [18:28, 16:11](1160 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:21](1239 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:11](1236 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:15](1236 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:17](1235 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:22](1242 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:23, 04:35](1329 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:16, 04:25](1241 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:18](1238 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 04:08](1241 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:33](1239 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:16, 04:04](1238 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:11](1239 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 06:56](1246 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 04:04](1238 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:13](1245 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 02:28] ( 863 warnings 396 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:13, 07:50] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:48, 03:16](1307 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:43, 02:59](1034 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:57](1041 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:41, 03:38](1083 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:35](1069 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:00](1003 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:16, 01:38](981 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:33, 01:38](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 08:10] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:31](1518 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:36, 01:15](1330 MB) +PASS -- TEST 'conus13km_decomp_intel' [09:48, 02:32](1543 MB) +PASS -- TEST 'conus13km_restart_intel' [15:40, 01:32](1269 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 08:05] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:47](1109 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 02:33] ( 796 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:19, 04:33](1112 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:19, 04:34](1127 MB) +PASS -- TEST 'conus13km_debug_intel' [25:37, 19:39](1566 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:29, 19:33](1160 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [31:52, 19:58](1371 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [32:36, 20:34](1593 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:56, 19:55](1629 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 02:33] ( 796 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:26, 04:13](1220 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 11:56] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [53:44, 03:26](1033 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [17:39, 06:16](1223 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:23, 03:10](1294 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:08, 14:50](1130 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:55, 04:48](610 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:00, 05:32](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:41, 02:19](425 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:29, 06:00](500 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:44, 03:11](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:02, 02:58](613 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:26, 00:53](451 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 10:29] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:49, 11:46](825 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:13, 10:30] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:44, 05:03](1088 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:46, 05:07](1073 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:12, 06:45] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:32, 02:25](1867 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:17, 01:37](1816 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:21, 02:14](1116 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [13:37, 02:17](1132 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [13:33, 02:17](1124 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:26, 02:24](1870 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:38, 02:25](1869 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [58:18, 02:14](1111 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:03, 05:48](1721 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:48, 05:36](1195 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:15, 02:25](1865 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:16, 04:01](4835 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:16, 03:52](4830 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:12, 04:08] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:16, 05:31](1780 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 06:34] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:15, 02:31](1872 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:43] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:27, 00:56](336 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:20, 00:36](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:26](558 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:10, 08:32] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:47, 04:23](2046 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 08:37] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:42, 05:10](2054 MB) + +PASS -- COMPILE 'atml_intel' [11:10, 09:10] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:52, 03:54](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:35, 02:27](1205 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:23] ( 911 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:49, 05:13](1908 MB) + +PASS -- COMPILE 'atmw_intel' [11:10, 09:59] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:47, 02:58](1947 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:38] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:46, 03:37](2010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 04:13](1808 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:23](1817 MB) + +PASS -- COMPILE 'atmaq_intel' [09:11, 08:04] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [19:21, 13:46](2946 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [22:12, 16:29](2946 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:38] ( 880 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [38:09, 33:05](2958 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:11, 08:07] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:22, 09:49](1088 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:07] +PASS -- TEST 'control_c48_gnu' [16:29, 07:52](1585 MB) +PASS -- TEST 'control_stochy_gnu' [07:19, 02:14](593 MB) +PASS -- TEST 'control_ras_gnu' [09:22, 03:41](600 MB) +PASS -- TEST 'control_p8_gnu' [09:56, 04:22](1539 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [09:42, 04:15](1546 MB) +PASS -- TEST 'control_flake_gnu' [09:21, 04:26](634 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 03:44] +PASS -- TEST 'rap_control_gnu' [10:32, 05:32](940 MB) +PASS -- TEST 'rap_decomp_gnu' [10:31, 05:44](942 MB) +PASS -- TEST 'rap_2threads_gnu' [08:46, 04:54](1004 MB) +PASS -- TEST 'rap_restart_gnu' [05:49, 02:48](676 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 05:46](944 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:32, 05:47](944 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [05:49, 02:55](680 MB) +PASS -- TEST 'hrrr_control_gnu' [09:40, 04:04](938 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [09:33, 04:14](925 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:43, 03:35](999 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [09:42, 04:07](938 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:28, 02:06](670 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:27, 02:05](757 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:57, 07:49](936 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 03:25] +PASS -- TEST 'control_csawmg_gnu' [12:24, 07:32](838 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 05:35] +PASS -- TEST 'control_diag_debug_gnu' [05:27, 01:13](1366 MB) +PASS -- TEST 'regional_debug_gnu' [11:26, 07:20](876 MB) +PASS -- TEST 'rap_control_debug_gnu' [06:17, 02:09](949 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:19, 02:01](946 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:16, 02:01](950 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 02:05](949 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:08](1034 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:16, 03:06](942 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:19, 02:01](950 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:16](585 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:18](580 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:29, 02:13](1534 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:17, 01:56](945 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:04](957 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:15](954 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:13, 01:42] +PASS -- TEST 'control_wam_debug_gnu' [07:32, 04:55](1387 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:25] +PASS -- TEST 'control_csawmg_debug_gnu' [05:23, 02:53](822 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:21] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:40, 04:00](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:40, 03:48](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:29, 03:27](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 03:27](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 03:52](792 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:47, 02:06](643 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:06](645 MB) +PASS -- TEST 'conus13km_control_gnu' [06:45, 03:51](1034 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:32, 01:53](1017 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:31, 03:56](1042 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:31, 02:09](763 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:33] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:29, 04:28](825 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 06:03] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:17, 01:59](801 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 01:58](800 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:31, 08:42](1050 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:30, 08:46](776 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:25, 08:50](1035 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [11:26, 09:06](1058 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:26, 08:33](1125 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:03] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:01](827 MB) + +PASS -- COMPILE 's2swa_gnu' [21:11, 19:57] +PASS -- TEST 'cpld_control_p8_gnu' [13:08, 10:22](1723 MB) + +PASS -- COMPILE 's2s_gnu' [19:11, 17:43] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:51, 09:24](1616 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:19] +PASS -- TEST 'cpld_debug_p8_gnu' [07:56, 05:27](1726 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:33] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [16:51, 13:58](1593 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:59] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:53, 08:53](1604 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 14:41] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:15, 02:44](1604 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [07:11, 02:55] +PASS -- TEST 'control_gfs_mpas_gnu' [02:19, 00:34](6405 MB) SYNOPSIS: -Starting Date/Time: 20251014 16:52:43 -Ending Date/Time: 20251014 19:54:15 -Total Time: 03h:02m:37s -Compiles Completed: 61/61 -Tests Completed: 267/271 -Failed Tests: -* TEST cpld_control_gfsv17_intel: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1940489/cpld_control_gfsv17_intel/err -* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 - -Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) - 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) - 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) - 374373588e22cd86f1b8eb670d489c2967a6b40a CMEPS-interface/CMEPS (cmeps_v0.4.1-2324-g3743735) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) - 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) - 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) - c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) - 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) - 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) --179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd --3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251014 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2904557 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rerun.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:10, 17:32] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:23, 16:40](2028 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:28, 18:11](2315 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:36, 06:41](1360 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [19:20, 16:42](2212 MB) - -SYNOPSIS: -Starting Date/Time: 20251014 19:59:56 -Ending Date/Time: 20251014 22:24:17 -Total Time: 02h:24m:41s -Compiles Completed: 1/1 -Tests Completed: 4/4 +Starting Date/Time: 20251024 20:23:27 +Ending Date/Time: 20251025 00:29:05 +Total Time: 04h:06m:30s +Compiles Completed: 59/59 +Tests Completed: 264/264 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 0a2140e6dd..c006ab19e0 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,10 +1,10 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,322 +40,308 @@ 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-20251014 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_475746 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3119325 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:52] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:09, 16:54](2107 MB) -PASS -- TEST 'cpld_control_gefs_intel' [40:44, 20:05](3045 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:26, 06:57](2732 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [43:20, 20:46](3080 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:11, 23:36] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:06, 19:38](1973 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:11, 21:55](2142 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 08:09](1228 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:28, 09:17](2098 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:04, 23:38](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:38] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:09, 20:51](1952 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:21] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 23:12](1957 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:49] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [24:16, 18:00](2194 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:09, 16:51](2189 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:03, 08:17](1780 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:06, 16:53](2204 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:13, 08:18](1766 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:00, 13:26](2302 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:59, 17:07](2177 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:46, 14:17](2069 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:10, 16:35](2187 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:05, 16:06](2672 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:32, 08:25](2865 MB) - -PASS -- COMPILE 's2swal_intel' [18:11, 16:49] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [22:04, 18:20](2157 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:19, 08:24](1752 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:39, 09:03](2163 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:42] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:20, 15:27](2000 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:29, 07:45](2088 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:21] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:23, 13:58](2219 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:57] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:22, 07:52](2030 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:24] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:35](2082 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:01] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:38, 15:48](2183 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:11, 22:01] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:50, 18:29](2031 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:21, 08:51](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:44, 20:39](1944 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:57, 08:44](3054 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:00, 02:33](3040 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:12, 01:28](2481 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:39, 01:24](2229 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:33, 00:48](2244 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:48, 00:35](1555 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:47, 01:31](2235 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:40, 00:47](2237 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:39, 00:36](1551 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:40, 00:49](2169 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:46, 00:40](2167 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:34, 00:31](1508 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 05:28] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:21, 28:26](2012 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:30] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:44](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:31, 02:40](1592 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:37, 02:51](1601 MB) -PASS -- TEST 'control_latlon_intel' [04:26, 02:47](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:32, 02:50](1602 MB) -PASS -- TEST 'control_c48_intel' [11:35, 09:12](1718 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:18](848 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:35, 09:22](1710 MB) -PASS -- TEST 'control_c192_intel' [10:55, 08:14](1794 MB) -PASS -- TEST 'control_c384_intel' [15:50, 09:57](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [18:17, 10:21](1351 MB) -PASS -- TEST 'control_stochy_intel' [03:28, 01:48](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:07](486 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 01:42](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:44](656 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:42, 03:11](946 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:43](658 MB) -PASS -- TEST 'control_p8_intel' [06:38, 03:09](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:17, 03:21](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:17, 03:07](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:27, 03:07](1913 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:36, 03:19](1916 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:08, 02:12](2402 MB) -PASS -- TEST 'control_restart_p8_intel' [04:43, 01:55](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:32, 03:08](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:44, 01:49](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:21, 03:13](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:03, 03:44](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:30](1887 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 04:57](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:19, 03:24](1894 MB) -PASS -- TEST 'merra2_thompson_intel' [06:41, 03:48](1898 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:28, 05:24](1905 MB) -PASS -- TEST 'regional_control_intel' [08:40, 06:23](1080 MB) -PASS -- TEST 'regional_restart_intel' [09:41, 04:28](1101 MB) -PASS -- TEST 'regional_decomp_intel' [08:34, 06:46](1073 MB) -PASS -- TEST 'regional_2threads_intel' [06:37, 04:28](1026 MB) -PASS -- TEST 'regional_noquilt_intel' [08:45, 06:20](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 06:20](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:46, 06:21](1094 MB) -PASS -- TEST 'regional_wofs_intel' [09:42, 07:49](1909 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [14:11, 12:53] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:31, 04:47](1922 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:18] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [07:31, 04:34](1045 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:12, 05:08](1361 MB) -PASS -- TEST 'rap_decomp_intel' [08:34, 04:44](1032 MB) -PASS -- TEST 'rap_2threads_intel' [13:03, 05:22](1117 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 02:30](998 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:17, 04:32](1049 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 04:41](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:41, 02:29](1001 MB) -PASS -- TEST 'hrrr_control_intel' [08:12, 04:26](1050 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:09, 04:29](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:23, 05:07](1117 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:25](966 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:26, 08:16](1042 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:28, 09:46](1994 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:27, 09:22](2007 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 11:54] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [11:55, 07:37](1041 MB) -PASS -- TEST 'control_ras_intel' [07:30, 03:36](743 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 11:56] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [17:58, 12:59](1674 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 11:43] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:38, 04:10](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [12:45, 07:08](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 06:11] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:36, 02:20](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:29, 02:26](1632 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:22, 03:04](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:30, 02:47](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:43, 05:07](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [05:23, 02:49](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:45](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [05:58, 03:36](1912 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:58](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 04:57](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:29, 04:49](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 04:56](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:55](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:00](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:00](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 04:55](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:00](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:52](1222 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:47](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:54](1216 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:04](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 04:52](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:01](1219 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:21] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:51, 14:23](1708 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:25] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:08, 04:55](1235 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:14, 04:00](941 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:16, 03:52](931 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 04:36](977 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:14, 04:25](980 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:03, 03:57](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 02:11](891 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:51, 02:07](887 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 11:57] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:13, 03:50](1328 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:54, 01:33](1232 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:06, 03:51](1351 MB) -PASS -- TEST 'conus13km_restart_intel' [04:03, 02:08](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 12:06] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 04:34](1012 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 04:16] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 04:50](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:45](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [24:53, 22:24](1358 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:51, 22:28](1060 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 21:34](1273 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:54, 22:48](1383 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:58, 22:31](1433 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:10, 04:24] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:53](1182 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 14:17] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:55, 04:37](916 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:37, 05:59](1085 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:34, 04:30](1215 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 06:25](971 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:59, 28:08](995 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:08, 34:36](1025 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:34](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 07:29](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:16](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:03, 08:09](414 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:51, 04:22](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:10](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 05:09](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:25](398 MB) -PASS -- TEST 'gnv1_nested_intel' [07:48, 03:57](1737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:10, 05:25] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 12:35](578 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:10, 13:15] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:10, 14:58](638 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:15, 15:05](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:10, 14:02] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 11:05](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:10, 12:58] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:56, 06:36](963 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:52, 06:40](950 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:05, 16:13](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:26] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:28](1866 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:24](1811 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:06](1132 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:11](1128 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 03:09](1122 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:22, 03:31](1874 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:27](1867 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:07](1128 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 07:35](1668 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:28, 07:09](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:28](1862 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:52](4822 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:56](4832 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:30] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 07:02](1776 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:19] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:26](1868 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:15, 01:13] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:13](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:45](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:31](312 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:31] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](568 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:49] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 04:14](1986 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:33] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:20, 05:00](1995 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:27] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 03:59](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:09, 02:06](1109 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:34] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:36, 05:33](1889 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 12:33] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:19, 02:07](1911 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:27] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:30](1986 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 05:22](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 05:25](1796 MB) - -PASS -- COMPILE 'atmaq_intel' [13:11, 11:58] ( 9 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:15, 18:51](2921 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:26, 22:35](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 04:41] ( 887 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:15, 39:35](2924 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:10, 11:23] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:35, 13:32](1082 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [19:10, 13:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [07:09, 05:08](572 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 14:55] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:29, 16:27](2108 MB) +PASS -- TEST 'cpld_control_gefs_intel' [35:17, 19:51](3063 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:00, 06:59](2739 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [35:45, 20:30](3079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 19:47] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:07, 20:37](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:12](2141 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:05, 09:09](1225 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:14, 10:15](2094 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:14, 24:44](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 19:44] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:59, 19:57](1960 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 06:45] ( 847 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:50, 23:16](1960 MB) + +PASS -- COMPILE 's2swa_intel' [23:11, 19:53] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [26:04, 17:47](2180 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:45, 16:50](2191 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:18, 08:25](1778 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:39, 16:42](2205 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:56, 08:14](1762 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:37, 13:05](2303 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:39, 16:30](2178 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:37, 14:40](2106 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:46, 16:50](2194 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 15:33](2667 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:11, 08:24](2860 MB) + +PASS -- COMPILE 's2swal_intel' [18:11, 15:44] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [22:42, 17:20](2156 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:18, 08:21](1752 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:23, 08:46](2171 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 14:35] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:09, 15:08](2002 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:18, 06:34](2086 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:17] ( 846 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:33, 14:46](2221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 06:39] ( 846 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 07:50](2016 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 13:18] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:33](2070 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:54] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:54, 15:57](2191 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:04] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:49, 18:51](2035 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:09, 08:14](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:51, 21:11](1944 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [15:09, 08:56](3052 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [09:06, 03:36](3049 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:07, 01:29](2478 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:48, 01:27](2237 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:46, 00:48](2246 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:33, 00:36](1557 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [07:47, 02:23](2243 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [07:48, 01:47](2234 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:33, 00:35](1557 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [07:47, 02:10](2167 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [06:46, 01:55](2168 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:34, 00:31](1507 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:31] ( 847 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:34, 29:06](2002 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:58] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:42](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:37](1592 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:49](1604 MB) +PASS -- TEST 'control_latlon_intel' [04:21, 02:45](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:49](1601 MB) +PASS -- TEST 'control_c48_intel' [11:35, 09:09](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 08:17](837 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:33, 09:21](1708 MB) +PASS -- TEST 'control_c192_intel' [10:48, 08:13](1790 MB) +PASS -- TEST 'control_c384_intel' [13:57, 10:13](1990 MB) +PASS -- TEST 'control_c384gdas_intel' [15:50, 10:21](1336 MB) +PASS -- TEST 'control_stochy_intel' [03:28, 01:50](656 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:06](488 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:42](651 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:43](653 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:41, 03:11](950 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:43](655 MB) +PASS -- TEST 'control_p8_intel' [05:51, 03:08](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:34, 03:21](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:27, 03:08](1888 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:34, 03:11](1906 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:43, 03:15](1922 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:26, 02:11](2403 MB) +PASS -- TEST 'control_restart_p8_intel' [06:02, 02:37](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:07](1883 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:41, 02:58](1112 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:22, 03:13](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:21, 03:44](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:34](1887 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 04:53](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:23, 04:14](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [06:45, 03:56](1891 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:26, 05:21](1904 MB) +PASS -- TEST 'regional_control_intel' [08:48, 06:22](1083 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:25](1105 MB) +PASS -- TEST 'regional_decomp_intel' [08:46, 06:41](1075 MB) +PASS -- TEST 'regional_2threads_intel' [06:42, 04:26](1029 MB) +PASS -- TEST 'regional_noquilt_intel' [08:53, 06:18](1363 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:38, 06:19](1096 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:41, 06:21](1086 MB) +PASS -- TEST 'regional_wofs_intel' [09:41, 07:51](1908 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:15] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:32, 05:49](1924 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:13] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [07:23, 04:32](1038 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:05](1356 MB) +PASS -- TEST 'rap_decomp_intel' [07:00, 04:42](1032 MB) +PASS -- TEST 'rap_2threads_intel' [08:27, 05:17](1113 MB) +PASS -- TEST 'rap_restart_intel' [06:55, 02:29](1003 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:05, 04:27](1045 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:05, 04:38](1030 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 02:27](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:28, 04:19](1037 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:19, 04:29](1029 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:04, 05:00](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:23](966 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:29, 08:14](1037 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:41](1994 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:18](2013 MB) + +PASS -- COMPILE 'csawmg_intel' [16:11, 11:45] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:40, 06:28](1044 MB) +PASS -- TEST 'control_ras_intel' [05:31, 03:30](742 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 11:39] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [14:48, 12:53](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 11:50] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:23, 03:07](1890 MB) +PASS -- TEST 'regional_control_faster_intel' [08:40, 06:10](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:05] ( 906 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:26](1626 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:18](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:57](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:45](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:37, 05:00](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:42](839 MB) +PASS -- TEST 'control_diag_debug_intel' [05:38, 02:55](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [06:51, 03:41](1913 MB) +PASS -- TEST 'regional_debug_intel' [20:48, 17:48](1095 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 04:54](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 04:52](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:51](1223 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:27, 04:56](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 04:53](1215 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:32, 05:31](1304 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 05:31](1221 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 04:58](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 04:56](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:51](1218 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:44](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:54](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:27](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:20](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:55](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:08] ( 863 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:00, 13:44](1705 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 13:38] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 04:50](1235 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:21, 03:55](941 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 03:46](921 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:20, 04:34](967 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:44, 04:25](994 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 03:55](910 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 02:10](893 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:44, 02:09](887 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 11:49] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:18, 03:48](1324 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:30](1234 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:05, 03:50](1354 MB) +PASS -- TEST 'conus13km_restart_intel' [06:59, 02:11](1194 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 11:40] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 04:33](1012 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 04:16] ( 796 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:52](1107 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:40](1097 MB) +PASS -- TEST 'conus13km_debug_intel' [24:54, 22:14](1395 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:54, 22:27](1069 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 21:38](1272 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:49, 24:08](1397 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:46, 22:13](1435 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:34] ( 796 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:55](1178 MB) + +PASS -- COMPILE 'hafsw_intel' [16:10, 14:12] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:02, 04:47](906 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:26, 05:59](1098 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:26](1213 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:02, 29:11](994 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:32](485 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:10, 07:26](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 03:18](364 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:56, 09:04](424 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 04:20](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:08](524 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:23](397 MB) +PASS -- TEST 'gnv1_nested_intel' [09:50, 03:56](1740 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:10, 17:58] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:17, 11:11](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:41] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:00, 06:37](964 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:03, 06:40](954 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:53] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:28](1872 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:25](1806 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:20, 03:05](1130 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 03:09](1119 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:08](1136 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:29](1870 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:26](1857 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:08](1125 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:43](1655 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 07:17](1038 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:34](1869 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:51](4833 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:19, 06:00](4828 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:39] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 06:58](1776 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:50] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:29](1865 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:28](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:34](318 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:36] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:39](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:20](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:37] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 03:58](1997 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 12:01] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 05:01](1992 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:24] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:26, 03:54](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:01, 02:03](1110 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:29] ( 911 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 04:50](1889 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 15:14] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 02:08](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:14] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:27](1991 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:02, 05:20](1770 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:29](1779 MB) + +PASS -- COMPILE 'atmaq_intel' [13:11, 11:49] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [26:00, 18:41](2922 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:53, 22:17](2913 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:31] ( 880 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:54, 39:52](2931 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:28] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:56](1088 MB) SYNOPSIS: -Starting Date/Time: 20251014 16:51:04 -Ending Date/Time: 20251014 19:04:21 -Total Time: 02h:14m:15s -Compiles Completed: 46/46 -Tests Completed: 211/211 +Starting Date/Time: 20251024 20:24:58 +Ending Date/Time: 20251024 22:37:42 +Total Time: 02h:13m:31s +Compiles Completed: 43/43 +Tests Completed: 203/203 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index ae578563c3..080baf7aa3 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,10 +1,10 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,442 +40,425 @@ 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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251014 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1772755 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1053866 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:16] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:49, 06:40](2183 MB) -PASS -- TEST 'cpld_control_gefs_intel' [37:05, 21:47](3251 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [18:37, 06:09](2944 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [43:54, 32:43](3473 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:40] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:45, 11:52](2070 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:49, 13:14](2588 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:52, 05:18](1498 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:06, 06:03](2367 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:42, 20:20](1992 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 13:04] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:36, 12:39](2010 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:20] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:50, 13:18](2100 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:32] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:52, 07:31](2459 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:56, 07:02](2497 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:53](2289 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 06:58](2387 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:56, 03:49](2001 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:49, 15:35](3007 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:48, 06:56](2452 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 11:46](2303 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:53, 06:59](2504 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [28:38, 19:09](3611 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:04, 12:54](3499 MB) - -PASS -- COMPILE 's2swal_intel' [10:11, 08:15] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [09:55, 07:27](2502 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:02, 03:58](2296 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:35](3098 MB) - -PASS -- COMPILE 's2sw_intel' [09:11, 07:55] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:38, 06:41](2104 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:48, 04:55](2988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:29] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:58, 08:59](2383 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:13] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 04:36](2107 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:41] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:40, 03:24](2168 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:10, 09:23] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:54, 06:40](2470 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:10, 11:48] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:41, 11:01](2166 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:51, 05:26](1669 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:41, 15:36](2107 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:22](3030 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:33, 01:28](3019 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:29, 00:52](2471 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:50](2212 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:29, 00:33](2212 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:26](1534 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:29, 00:53](2210 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:29, 00:32](2212 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:26](1532 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:34](2137 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:29](2138 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:26, 00:23](1488 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:07] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:39, 19:17](2189 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:20] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [06:19, 02:30](1348 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:20, 01:51](2213 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 01:45](2243 MB) -PASS -- TEST 'control_latlon_intel' [05:20, 01:43](2230 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:21, 01:44](2241 MB) -PASS -- TEST 'control_c48_intel' [07:18, 04:40](1672 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:25](805 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:18, 04:52](1673 MB) -PASS -- TEST 'control_c192_intel' [08:31, 05:09](1821 MB) -PASS -- TEST 'control_c384_intel' [09:09, 05:46](2098 MB) -PASS -- TEST 'control_c384gdas_intel' [10:55, 06:15](1951 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:12](1307 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:57](1207 MB) -PASS -- TEST 'control_lndp_intel' [03:16, 01:26](1308 MB) -PASS -- TEST 'control_iovr4_intel' [03:17, 01:46](1307 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:27, 02:11](1604 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 01:44](1302 MB) -PASS -- TEST 'control_p8_intel' [04:37, 02:08](2517 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:41, 02:17](2520 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:34, 02:06](2526 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:35, 02:06](2554 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:38, 02:11](2555 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:38, 10:11](2393 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:24](1845 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:06](2502 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:17](1861 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:33, 02:12](2498 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:32, 01:46](2023 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:41](2528 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:34, 02:50](2590 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:16](2516 MB) -PASS -- TEST 'merra2_thompson_intel' [04:34, 02:30](2525 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:42](2541 MB) -PASS -- TEST 'regional_control_intel' [05:29, 03:37](1723 MB) -PASS -- TEST 'regional_restart_intel' [03:26, 02:02](1695 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 03:45](1711 MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 02:10](1566 MB) -PASS -- TEST 'regional_noquilt_intel' [05:27, 03:36](1997 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:35](1720 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:33](1725 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 04:26](2631 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:20] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:34, 02:44](2556 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 05:41] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [04:26, 02:47](1773 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 02:48](1600 MB) -PASS -- TEST 'rap_decomp_intel' [04:23, 02:52](1712 MB) -PASS -- TEST 'rap_2threads_intel' [04:23, 02:17](1184 MB) -PASS -- TEST 'rap_restart_intel' [03:25, 01:30](1747 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:28, 02:48](1792 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:23, 02:51](1729 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:27, 01:30](1750 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 02:40](1774 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:43](1691 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:22, 02:11](1172 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:27](1708 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:58](1930 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:26](2665 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:11](2925 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:50] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:26, 04:24](1768 MB) -PASS -- TEST 'control_ras_intel' [04:16, 02:17](1589 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:13] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [09:36, 08:07](2430 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:52] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:34, 02:06](2525 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 03:22](1722 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:21] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:38](2245 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:41](2256 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:12](1483 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:58](1483 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:08](1796 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 02:01](1487 MB) -PASS -- TEST 'control_diag_debug_intel' [04:23, 02:01](2325 MB) -PASS -- TEST 'control_debug_p8_intel' [03:32, 02:02](2545 MB) -PASS -- TEST 'regional_debug_intel' [13:28, 11:56](1638 MB) -PASS -- TEST 'rap_control_debug_intel' [05:18, 03:35](1881 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:28](1878 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:33](1875 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:34](1870 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:36](1884 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:46](1956 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:38](1868 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 03:42](1865 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:36](1879 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:36](1889 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:30](1874 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:35](1880 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:41](1875 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:33](1875 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:38](1866 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 06:07](1884 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:12] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:33, 09:22](2297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:33] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 02:39](1482 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:22](1713 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:19](1703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:25, 01:56](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:24, 01:52](1056 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:23, 02:21](1651 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:18](1655 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:15](1638 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:10, 05:44] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [14:49, 13:00](1773 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:33, 00:50](1814 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:35, 01:59](1832 MB) -PASS -- TEST 'conus13km_restart_intel' [03:40, 01:08](1572 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:32] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 02:53](1814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:05] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:25](1756 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:22](1754 MB) -PASS -- TEST 'conus13km_debug_intel' [16:38, 14:29](1846 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:36, 14:56](1457 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:18](1826 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:36, 14:57](1868 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:33, 15:02](1902 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:09] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:26](1862 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 07:49] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:34, 02:37](1203 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:52, 03:58](1401 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:30](1455 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:41, 04:17](1311 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:36, 31:27](1375 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:44, 23:12](1391 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:14](793 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:34, 03:57](810 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:28, 01:33](536 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:56, 04:23](613 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:17](756 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:27, 02:07](763 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 02:36](821 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:49](521 MB) -PASS -- TEST 'gnv1_nested_intel' [04:46, 02:30](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:30] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:14](706 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:55] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:34, 26:29](901 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:36, 25:44](1067 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:49] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:05, 19:26](1127 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:47] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:33, 04:06](1304 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:36, 04:23](1278 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:47, 11:34](1809 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:31] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:17, 11:10](1949 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:20, 06:56](1888 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:18, 16:26](1199 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:18, 10:08](1189 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 01:45](1199 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:51](1943 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:53](1937 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:41](1202 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:21, 05:47](1816 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 05:24](1378 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:13, 15:16](1941 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:07](4787 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:23](4790 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:22] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:05](1848 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:36] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:08](1944 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:16] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 07:01](2198 MB) +PASS -- TEST 'cpld_control_gefs_intel' [32:56, 23:10](3260 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [15:34, 05:43](2969 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [41:53, 32:08](3461 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:11, 11:41] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:41, 12:04](2070 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:47, 13:20](2595 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:09, 05:18](1515 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:01, 06:03](2361 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:38, 20:21](2008 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:11, 11:06] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:32, 12:53](2009 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:26] ( 847 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:50, 13:12](2107 MB) + +PASS -- COMPILE 's2swa_intel' [10:10, 08:45] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:55, 07:30](2507 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:09](2502 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:52, 03:49](2268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:09](2363 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:52, 03:51](1985 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:47, 15:38](2990 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:08](2494 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:47, 11:52](2295 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:56, 07:10](2479 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:43, 18:34](3606 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:11, 12:31](3480 MB) + +PASS -- COMPILE 's2swal_intel' [10:10, 08:43] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:56, 07:46](2528 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:54, 03:55](2269 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:40](3132 MB) + +PASS -- COMPILE 's2sw_intel' [10:10, 08:24] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:43, 06:31](2089 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:50, 05:19](2977 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:44] ( 846 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:59, 09:04](2394 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:23] ( 846 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:48, 04:30](2119 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:26] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:27](2162 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:10, 09:42] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 06:34](2518 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:10, 11:03] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:41, 10:54](2172 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:51, 05:23](1687 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:40, 15:31](2099 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:54](3036 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:30, 01:25](3016 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:30, 00:54](2471 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:57](2207 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:35](2210 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [22:27, 21:04](1535 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [20:38, 19:04](2214 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:29, 00:32](2211 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:25](1532 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:28, 00:33](2136 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:27, 00:27](2136 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:26, 00:23](1490 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:07] ( 847 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:52, 19:14](2191 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:31] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 03:03](1342 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 01:39](2221 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:21, 01:51](2227 MB) +PASS -- TEST 'control_latlon_intel' [03:19, 01:43](2244 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:43](2220 MB) +PASS -- TEST 'control_c48_intel' [06:22, 04:47](1668 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:36](804 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:22, 05:07](1666 MB) +PASS -- TEST 'control_c192_intel' [06:30, 05:06](1822 MB) +PASS -- TEST 'control_c384_intel' [08:05, 05:44](2108 MB) +PASS -- TEST 'control_c384gdas_intel' [09:55, 06:16](1929 MB) +PASS -- TEST 'control_stochy_intel' [03:16, 01:11](1307 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:42](1204 MB) +PASS -- TEST 'control_lndp_intel' [02:16, 01:06](1308 MB) +PASS -- TEST 'control_iovr4_intel' [03:17, 01:46](1297 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:28, 02:12](1607 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:46](1297 MB) +PASS -- TEST 'control_p8_intel' [04:36, 02:10](2509 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:42, 02:14](2539 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:10](2522 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:33, 02:06](2538 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:14](2552 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:36, 10:20](2414 MB) +PASS -- TEST 'control_restart_p8_intel' [03:41, 01:16](1861 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:11](2505 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 01:19](1847 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:34, 02:10](2511 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:30, 01:46](2018 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:32](2519 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:34, 02:47](2586 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:35, 02:17](2530 MB) +PASS -- TEST 'merra2_thompson_intel' [04:33, 02:40](2524 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:43](2542 MB) +PASS -- TEST 'regional_control_intel' [05:27, 03:51](1721 MB) +PASS -- TEST 'regional_restart_intel' [03:28, 02:07](1700 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 03:44](1722 MB) +PASS -- TEST 'regional_2threads_intel' [03:28, 02:08](1566 MB) +PASS -- TEST 'regional_noquilt_intel' [05:35, 03:35](1997 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:26, 03:36](1712 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:35](1727 MB) +PASS -- TEST 'regional_wofs_intel' [06:38, 04:33](2639 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:14] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:31, 02:55](2558 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 06:21] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [04:26, 02:46](1774 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:01, 02:52](1612 MB) +PASS -- TEST 'rap_decomp_intel' [04:28, 02:50](1715 MB) +PASS -- TEST 'rap_2threads_intel' [04:24, 02:17](1180 MB) +PASS -- TEST 'rap_restart_intel' [03:25, 01:50](1785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:26, 02:47](1774 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:24, 02:55](1764 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:24, 01:29](1768 MB) +PASS -- TEST 'hrrr_control_intel' [04:26, 02:41](1780 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 02:47](1685 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:21, 02:12](1173 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:28](1722 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:29, 04:56](1936 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 06:19](2643 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 06:09](2896 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:28] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:26, 04:37](1752 MB) +PASS -- TEST 'control_ras_intel' [08:16, 07:08](1742 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:45] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [10:50, 08:12](2428 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:59] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:49, 02:16](2523 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 03:24](1720 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:28] ( 906 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 01:38](2244 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:39](2261 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:09](1478 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:59](1475 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:26, 03:09](1795 MB) +PASS -- TEST 'control_ras_debug_intel' [03:16, 02:03](1492 MB) +PASS -- TEST 'control_diag_debug_intel' [03:22, 02:01](2326 MB) +PASS -- TEST 'control_debug_p8_intel' [03:28, 02:03](2550 MB) +PASS -- TEST 'regional_debug_intel' [13:36, 11:51](1640 MB) +PASS -- TEST 'rap_control_debug_intel' [05:18, 03:32](1876 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:30](1860 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 03:28](1878 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:32](1870 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:36](1874 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:23, 09:16](1972 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:38](1875 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:36](1887 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:36](1877 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:38](1883 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 03:34](1886 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 03:42](1870 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:44](1867 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:40](1878 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:51](1872 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:28, 06:06](1877 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:04] ( 863 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:57, 09:05](2296 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:13, 05:29] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:20, 02:38](1483 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:36, 02:22](1746 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:34, 02:31](1706 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:25, 01:56](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:21, 01:53](1058 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:28](1655 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:38, 01:18](1625 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:15](1619 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:13, 05:26] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:52, 07:13](1790 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:35, 00:50](1806 MB) +PASS -- TEST 'conus13km_decomp_intel' [15:38, 14:01](1811 MB) +PASS -- TEST 'conus13km_restart_intel' [03:36, 01:10](1562 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:13, 05:24] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 02:54](1824 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:14] ( 796 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:50](1753 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:23](1743 MB) +PASS -- TEST 'conus13km_debug_intel' [16:35, 15:01](1798 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:34, 14:44](1423 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:32, 08:29](1831 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [31:32, 29:19](1848 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:57, 15:11](1908 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:11] ( 796 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 03:36](1857 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:13] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:58, 02:38](1191 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:55, 04:04](1385 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:24, 02:29](1453 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:35, 31:40](1346 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:30, 03:18](799 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:33, 03:57](811 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:28, 01:33](535 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:54, 04:25](609 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:28](759 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:35, 02:13](766 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:21, 00:46](525 MB) +PASS -- TEST 'gnv1_nested_intel' [04:46, 02:32](1770 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:28] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:17, 18:29](1093 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 08:05] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:33, 04:01](1324 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:33, 04:06](1310 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:35] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:17, 11:31](1949 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:10](1888 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:45](1198 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:00](1194 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:49](1201 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:02](1937 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:55](1939 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:50](1207 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:38](1852 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:54, 05:33](1367 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:53](1942 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:50](4789 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:38](4790 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:20] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 04:03](1844 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:23] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:01](1939 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:46](364 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 00:32](616 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:23](621 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:14] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:42, 02:36](2837 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:45] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:36, 03:26](2861 MB) - -PASS -- COMPILE 'atml_intel' [08:11, 06:26] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:35, 02:28](1907 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 01:27](1322 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:54] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:36, 03:32](1951 MB) - -PASS -- COMPILE 'atmw_intel' [09:11, 08:05] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:34, 01:51](2688 MB) - -PASS -- COMPILE 'atmaero_intel' [07:11, 05:51] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:03](1999 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:35, 03:19](2399 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 03:19](2432 MB) - -PASS -- COMPILE 'atmaq_intel' [07:11, 05:41] ( 9 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:27, 11:08](2872 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [17:09, 13:12](2878 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:22] ( 887 warnings 611 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:14, 26:48](2887 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:14] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:46](1136 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:10, 13:34] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:44, 11:54](2055 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:10, 03:29] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [16:43, 13:10](2091 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:10, 12:52] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:35, 12:28](1997 MB) - -PASS -- COMPILE 's2swa_intelllvm' [10:10, 08:23] -PASS -- TEST 'cpld_control_p8_intelllvm' [11:56, 07:20](2503 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:26] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:25, 02:37](1748 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:24] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:26, 02:51](1837 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:45] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [05:37, 02:37](827 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:10, 02:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [11:34, 08:14](743 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:10, 04:31] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [19:19, 17:52](1941 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 03:06] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:14, 04:11](1838 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 02:58] -PASS -- TEST 'control_c48_gnu' [07:21, 05:40](1514 MB) -PASS -- TEST 'control_stochy_gnu' [03:17, 02:01](517 MB) -PASS -- TEST 'control_ras_gnu' [05:24, 03:13](520 MB) -PASS -- TEST 'control_p8_gnu' [04:44, 03:00](1454 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:04](1474 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 03:59](562 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:49] -PASS -- TEST 'rap_control_gnu' [05:26, 03:24](853 MB) -PASS -- TEST 'rap_decomp_gnu' [05:22, 03:26](854 MB) -PASS -- TEST 'rap_2threads_gnu' [06:23, 02:39](910 MB) -PASS -- TEST 'rap_restart_gnu' [03:25, 01:48](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:25](854 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:22, 03:28](853 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:25, 01:54](580 MB) -PASS -- TEST 'hrrr_control_gnu' [05:25, 03:21](854 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:23, 03:22](841 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:21, 02:32](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:22, 03:20](855 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:46](578 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:46](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:12](849 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:34] -PASS -- TEST 'control_csawmg_gnu' [07:29, 05:39](760 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 04:49] -PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:16](1286 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 05:39](754 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:50](860 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:48](863 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:47](866 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:50](866 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](948 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:52](859 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:50](860 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:07](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:12](499 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:19](1449 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:17, 01:49](862 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 01:51](862 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 02:59](872 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:23] -PASS -- TEST 'control_wam_debug_gnu' [06:38, 04:44](1310 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:31] -PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:46](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:42] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:23, 03:14](711 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:21, 03:08](714 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:28](738 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:23](732 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:21, 03:08](713 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:24, 01:42](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 01:42](556 MB) -PASS -- TEST 'conus13km_control_gnu' [04:43, 02:58](905 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:10](907 MB) -PASS -- TEST 'conus13km_decomp_gnu' [27:36, 25:27](910 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:36, 01:44](583 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:13, 06:16] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 03:37](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:12, 05:04] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [06:18, 04:13](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:45](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:34, 07:14](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:35, 07:03](650 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:33, 04:07](925 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [23:33, 21:15](926 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:35, 06:57](990 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 04:49] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:48](744 MB) - -PASS -- COMPILE 's2swa_gnu' [13:11, 11:18] -PASS -- TEST 'cpld_control_p8_gnu' [10:00, 07:43](1596 MB) - -PASS -- COMPILE 's2s_gnu' [11:16, 10:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:48, 06:57](1558 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:10, 01:52] -PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:50](1601 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:34] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:42, 08:58](1591 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 01:38] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:40, 06:40](1580 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:16, 10:25] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:18](1512 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:47](360 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:36](622 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:24](622 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:11, 05:54] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:40, 02:40](2838 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:14, 05:55] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:35, 03:30](2864 MB) + +PASS -- COMPILE 'atml_intel' [08:14, 06:24] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:35, 02:30](1918 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:29, 01:30](1332 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:10] ( 911 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:38, 03:29](1941 MB) + +PASS -- COMPILE 'atmw_intel' [09:16, 07:46] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:54](2698 MB) + +PASS -- COMPILE 'atmaero_intel' [07:17, 05:42] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:17](2040 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 03:19](2410 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:22](2413 MB) + +PASS -- COMPILE 'atmaq_intel' [07:11, 05:33] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:25, 11:19](2877 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:17, 13:16](2877 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:12] ( 880 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:14, 27:05](2891 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:16] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:38](1138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [13:28, 11:40] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:43, 12:07](2057 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [04:14, 03:05] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:39, 13:41](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [13:25, 11:28] +PASS -- TEST 'cpld_control_sfs_intelllvm' [14:31, 12:46](2016 MB) + +PASS -- COMPILE 's2swa_intelllvm' [10:26, 08:26] +PASS -- TEST 'cpld_control_p8_intelllvm' [10:15, 07:38](2508 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:16, 05:22] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:24, 02:22](1713 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:54] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:25, 02:51](1825 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [05:17, 04:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:14, 01:53](1935 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:12, 02:24] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:14, 04:01](1841 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 02:49] +PASS -- TEST 'control_c48_gnu' [07:21, 05:40](1513 MB) +PASS -- TEST 'control_stochy_gnu' [03:16, 02:07](515 MB) +PASS -- TEST 'control_ras_gnu' [05:15, 03:18](520 MB) +PASS -- TEST 'control_p8_gnu' [04:51, 03:06](1462 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:01](1453 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 04:12](559 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 02:45] +PASS -- TEST 'rap_control_gnu' [05:22, 03:23](854 MB) +PASS -- TEST 'rap_decomp_gnu' [05:23, 03:39](854 MB) +PASS -- TEST 'rap_2threads_gnu' [04:26, 02:44](909 MB) +PASS -- TEST 'rap_restart_gnu' [03:27, 01:54](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:25, 03:37](852 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:22, 03:29](853 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:27, 01:52](580 MB) +PASS -- TEST 'hrrr_control_gnu' [05:21, 03:23](856 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:21, 03:27](840 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:33](903 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 03:27](857 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:48](580 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:44](668 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:27, 06:12](850 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 02:32] +PASS -- TEST 'control_csawmg_gnu' [07:26, 05:36](760 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 04:52] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:17](1287 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 05:33](762 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:30, 01:55](863 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 01:54](863 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 01:49](868 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:49](867 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](949 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:59](859 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:58](859 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:13](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:12](498 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:34](1474 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:07](862 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:14](861 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:36, 02:59](871 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:31] +PASS -- TEST 'control_wam_debug_gnu' [06:35, 04:34](1312 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:47] +PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:46](738 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:16, 02:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:12](711 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:22, 03:12](712 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:29](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:27](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:20, 03:11](714 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:44](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:40](558 MB) +PASS -- TEST 'conus13km_control_gnu' [07:41, 05:53](906 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:32, 01:11](907 MB) +PASS -- TEST 'conus13km_decomp_gnu' [04:34, 02:55](908 MB) +PASS -- TEST 'conus13km_restart_gnu' [13:33, 11:24](587 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:13, 06:06] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:37](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 04:52] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:51](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:50](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [16:34, 15:00](922 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:35, 07:09](651 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 04:03](925 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:32, 07:24](926 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:32, 07:03](990 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:17, 05:19] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:52](745 MB) + +PASS -- COMPILE 's2swa_gnu' [13:10, 11:13] +PASS -- TEST 'cpld_control_p8_gnu' [09:56, 07:40](1619 MB) + +PASS -- COMPILE 's2s_gnu' [12:14, 10:18] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:49, 07:08](1559 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:10, 01:54] +PASS -- TEST 'cpld_debug_p8_gnu' [06:48, 04:46](1625 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [12:10, 10:09] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:41, 09:15](1589 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:41] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:38, 06:44](1590 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [11:13, 09:57] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:11](1511 MB) SYNOPSIS: -Starting Date/Time: 20251014 22:50:30 -Ending Date/Time: 20251015 00:34:25 -Total Time: 01h:44m:39s -Compiles Completed: 70/70 -Tests Completed: 283/283 +Starting Date/Time: 20251026 22:09:08 +Ending Date/Time: 20251026 23:57:04 +Total Time: 01h:48m:33s +Compiles Completed: 66/66 +Tests Completed: 274/274 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 12e3407b1d..d7225a6927 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,10 +1,10 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -85810b42c593afa904c531fad1d31c79bd924d38 +97492dc15ca61685c8bc5f49ff3d3a0b3b930292 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) @@ -15,21 +15,21 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + bf4042fd100ce70026d72c6d72315ec97e29383f UFSATM/ccpp/physics (remotes/origin/moorthi_cover) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) + 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) + 99d831f201a78bf7f8833f116716634fc7a0e90f WW3 (remotes/origin/dev2devufspluswarningfix) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,266 +40,255 @@ 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-20251014 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3086500 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251024 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3218918 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:46, 06:56](3348 MB) -PASS -- TEST 'cpld_control_gefs_intel' [49:47, 26:07](4110 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [34:16, 08:17](3919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 13:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:59, 16:30](1904 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:41, 19:29](1972 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:20, 13:24](1085 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [17:01, 09:29](1929 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:00, 18:35](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:32, 13:03] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:58, 16:53](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 04:56] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:49, 20:14](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:31, 11:45] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:26, 08:44](3379 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:13, 08:45](3378 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:55, 14:55](3270 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:39, 08:34](3406 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:01, 09:31](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:24, 07:44](3620 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:05, 08:35](3372 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:24, 07:08](3332 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:57, 08:44](3378 MB) - -PASS -- COMPILE 's2swal_intel' [13:30, 11:39] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:43, 08:44](3342 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:49, 05:05](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:27](1972 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:30, 10:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:11, 05:33](1979 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:38, 16:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:56, 11:40](3382 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:50] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:11, 19:32](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:09, 10:57](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:14, 22:27](1896 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:47, 06:34](2888 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:45, 02:29](2896 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:17, 01:53](2314 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:07, 01:40](2111 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:05, 01:24](2114 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:56, 01:14](1491 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:03, 01:49](2109 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:01, 01:17](2112 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:56, 01:11](1490 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:10, 01:17](2041 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:05, 01:04](2042 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:52, 00:57](1396 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:43] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:56, 24:35](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:56, 07:03](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:54, 04:57](1579 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:08, 05:20](1589 MB) -PASS -- TEST 'control_latlon_intel' [09:54, 07:01](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:53, 04:12](1589 MB) -PASS -- TEST 'control_c48_intel' [11:25, 07:21](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:11, 08:56](722 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:11, 07:19](1601 MB) -PASS -- TEST 'control_c192_intel' [14:37, 10:38](1709 MB) -PASS -- TEST 'control_c384_intel' [22:38, 15:27](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [26:19, 17:23](1180 MB) -PASS -- TEST 'control_stochy_intel' [05:14, 02:28](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:50, 01:47](407 MB) -PASS -- TEST 'control_lndp_intel' [06:19, 02:23](647 MB) -PASS -- TEST 'control_iovr4_intel' [07:47, 04:49](637 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:36, 05:46](918 MB) -PASS -- TEST 'control_iovr5_intel' [09:06, 06:11](637 MB) -PASS -- TEST 'control_p8_intel' [12:57, 06:07](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:24, 04:55](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:49, 06:14](1869 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [12:01, 05:41](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [12:41, 05:42](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:31, 04:36](2441 MB) -PASS -- TEST 'control_restart_p8_intel' [09:31, 05:08](1015 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:35, 05:31](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:08, 02:25](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:29, 05:38](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:55, 05:36](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:08, 08:41](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:54, 07:42](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:34, 05:47](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [11:48, 05:45](1870 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [12:42, 07:28](1878 MB) -PASS -- TEST 'regional_control_intel' [11:50, 08:42](873 MB) -PASS -- TEST 'regional_restart_intel' [07:03, 04:09](883 MB) -PASS -- TEST 'regional_decomp_intel' [12:26, 09:04](880 MB) -PASS -- TEST 'regional_2threads_intel' [11:55, 08:11](990 MB) -PASS -- TEST 'regional_noquilt_intel' [12:33, 09:46](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:22, 09:29](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:35, 09:16](873 MB) -PASS -- TEST 'regional_wofs_intel' [15:25, 12:02](1612 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:26, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [13:42, 07:19](1889 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:37] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:33, 07:33](1017 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:41, 07:50](1204 MB) -PASS -- TEST 'rap_decomp_intel' [11:11, 07:19](1016 MB) -PASS -- TEST 'rap_2threads_intel' [11:31, 06:54](1095 MB) -PASS -- TEST 'rap_restart_intel' [10:18, 04:56](768 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:51, 07:17](1020 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 07:21](1013 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:33, 03:21](769 MB) -PASS -- TEST 'hrrr_control_intel' [12:04, 07:57](1011 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:15, 06:31](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:14, 05:31](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:46, 02:57](762 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:30, 10:32](1010 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:58, 15:22](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:31, 12:05](1969 MB) - -PASS -- COMPILE 'csawmg_intel' [09:25, 07:46] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:50, 08:32](958 MB) -PASS -- TEST 'control_ras_intel' [08:44, 06:19](669 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 07:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:33, 17:08](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:30, 04:50](1864 MB) -PASS -- TEST 'regional_control_faster_intel' [09:43, 06:21](873 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:21, 04:46] ( 890 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:40](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:47](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:39, 03:32](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:55, 03:17](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:58, 05:22](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [06:57, 03:39](836 MB) -PASS -- TEST 'control_diag_debug_intel' [07:12, 03:30](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [08:07, 04:38](1908 MB) -PASS -- TEST 'regional_debug_intel' [22:30, 20:16](934 MB) -PASS -- TEST 'rap_control_debug_intel' [08:51, 06:08](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:10, 06:13](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:35, 05:57](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:38, 06:22](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:52, 06:00](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:21, 06:10](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:48, 06:08](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:07, 06:35](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:14, 05:56](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:42, 05:53](1199 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:01, 06:04](1201 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:52, 07:03](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:59, 10:30](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:03, 06:50](1200 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:52, 07:29](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:16, 10:28](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:36] ( 848 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:48, 15:02](1707 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:47] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:17, 06:55](1043 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 04:26](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:22, 09:43](891 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 03:30](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:22, 08:04](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:18, 07:23](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:16, 02:57](733 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 02:22](728 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 08:04] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:32, 04:09](1022 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:33, 02:53](1138 MB) -PASS -- TEST 'conus13km_decomp_intel' [07:24, 03:57](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:46, 02:03](688 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:29, 07:58] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:48, 07:31](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:24, 03:33] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:15, 08:02](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:20, 06:27](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [30:30, 26:27](1099 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:36, 24:29](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:44, 14:23](1209 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:10, 24:49](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:41, 24:16](1170 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:22, 03:39] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:05, 06:24](1111 MB) - -PASS -- COMPILE 'hafsw_intel' [11:31, 09:54] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:41, 07:38](707 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [14:23, 09:14](921 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:13, 05:35](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:51, 07:40](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:42, 12:56](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:54, 13:47](947 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:38, 06:05](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:49, 07:12](478 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:34, 03:26](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:29, 09:39](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:41, 04:20](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:29, 03:47](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:44, 05:58](550 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:42](410 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:23, 04:19] ( 1484 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 14:49](662 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:33, 09:40] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:54, 07:48](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:39, 08:06](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:36, 10:30] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:17, 06:26](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:33, 10:08] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:45, 07:37](763 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 07:49](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:07, 18:09](834 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:34, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:23, 04:45](1912 MB) - -PASS -- COMPILE 'atml_intel' [13:28, 11:38] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:23, 05:08] ( 895 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:26, 08:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:17, 05:14](3237 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:46, 05:30](3209 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:47, 05:39](3216 MB) - -PASS -- COMPILE 'atmaq_intel' [11:29, 10:00] ( 9 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [31:35, 23:42](2396 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [33:08, 25:42](2438 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:25] ( 873 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [49:33, 42:14](1956 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:51] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 07:12](3347 MB) +PASS -- TEST 'cpld_control_gefs_intel' [34:59, 17:13](4108 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [28:36, 08:33](3923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:29, 12:59] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:56, 15:53](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 17:07](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:03, 07:55](1072 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:21, 08:23](1938 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:56, 18:09](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:32, 13:28] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:01, 16:05](1904 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:20, 04:57] ( 828 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 20:36](1946 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 12:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:49](3383 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:30, 08:46](3382 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:55, 05:08](3266 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:02, 09:03](3411 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:07, 05:21](3293 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:43, 08:03](3624 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:46, 08:46](3373 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:18, 07:32](3331 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:30, 09:02](3382 MB) + +PASS -- COMPILE 's2swal_intel' [13:26, 12:04] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:16, 09:02](3339 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 11:26] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 05:35](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:20, 07:58](1969 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:12, 05:26](1981 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 16:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:42, 08:53](3380 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:30, 12:48] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:39, 15:45](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:42, 08:19](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 18:27](1896 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:50, 06:44](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:48, 02:58](2896 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:27, 01:52](2313 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:12, 02:02](2112 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:10, 01:22](2114 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:59, 01:36](1490 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:14, 02:01](2109 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:12, 01:29](2111 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:59, 01:36](1488 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:11, 01:33](2042 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:10, 01:28](2040 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:59, 01:10](1397 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:46] ( 828 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:16, 24:26](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:34, 09:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:45, 04:11](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 02:39](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:04](1589 MB) +PASS -- TEST 'control_latlon_intel' [04:39, 02:41](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:04](1589 MB) +PASS -- TEST 'control_c48_intel' [08:59, 06:43](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:06, 06:12](724 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:02, 06:51](1602 MB) +PASS -- TEST 'control_c192_intel' [10:12, 07:29](1712 MB) +PASS -- TEST 'control_c384_intel' [14:02, 09:16](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [17:18, 10:03](1173 MB) +PASS -- TEST 'control_stochy_intel' [04:39, 01:53](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:37, 01:25](407 MB) +PASS -- TEST 'control_lndp_intel' [04:36, 02:01](648 MB) +PASS -- TEST 'control_iovr4_intel' [04:52, 02:50](638 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:03, 03:19](918 MB) +PASS -- TEST 'control_iovr5_intel' [04:40, 02:57](637 MB) +PASS -- TEST 'control_p8_intel' [07:42, 03:35](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 03:49](1866 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:26, 03:27](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:23, 03:39](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:46, 03:46](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:54, 02:43](2440 MB) +PASS -- TEST 'control_restart_p8_intel' [06:39, 02:44](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:03, 03:29](1863 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:30, 02:21](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:56, 03:37](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:41, 03:36](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:35](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:28, 04:55](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:04, 04:21](1878 MB) +PASS -- TEST 'merra2_thompson_intel' [08:47, 04:19](1870 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [10:31, 06:26](1876 MB) +PASS -- TEST 'regional_control_intel' [08:12, 05:58](873 MB) +PASS -- TEST 'regional_restart_intel' [06:12, 03:49](884 MB) +PASS -- TEST 'regional_decomp_intel' [09:03, 06:28](876 MB) +PASS -- TEST 'regional_2threads_intel' [07:01, 03:57](993 MB) +PASS -- TEST 'regional_noquilt_intel' [08:07, 05:48](1183 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:16, 06:49](873 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:10, 05:50](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:03, 07:07](1612 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:27, 09:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:42, 04:45](1888 MB) + +PASS -- COMPILE 'rrfs_intel' [10:36, 08:37] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:44, 04:16](1020 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:39, 04:40](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:41, 04:35](1017 MB) +PASS -- TEST 'rap_2threads_intel' [07:29, 03:58](1092 MB) +PASS -- TEST 'rap_restart_intel' [06:43, 02:36](767 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:57, 04:19](1019 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 04:41](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:45, 02:24](768 MB) +PASS -- TEST 'hrrr_control_intel' [08:37, 04:25](1011 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 04:08](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:49](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:44, 02:28](763 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:35, 07:40](1013 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:50, 09:52](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 09:21](1970 MB) + +PASS -- COMPILE 'csawmg_intel' [09:32, 07:53] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:21, 07:34](959 MB) +PASS -- TEST 'control_ras_intel' [05:43, 03:54](672 MB) + +PASS -- COMPILE 'wam_intel' [09:30, 07:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:41, 12:46](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:30, 08:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:41, 03:37](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [08:08, 05:28](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:27, 04:57] ( 891 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:44](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:46, 02:52](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:40, 03:41](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:37, 03:16](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:58, 05:23](1118 MB) +PASS -- TEST 'control_ras_debug_intel' [05:34, 03:17](837 MB) +PASS -- TEST 'control_diag_debug_intel' [05:40, 03:31](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 03:34](1909 MB) +PASS -- TEST 'regional_debug_intel' [21:27, 18:50](936 MB) +PASS -- TEST 'rap_control_debug_intel' [07:41, 05:47](1206 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:53, 05:41](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 05:43](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:41, 05:44](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:50, 05:43](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:57](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:49](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:50](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:49, 05:56](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 05:39](1200 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:41, 05:36](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:42, 05:37](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:50, 09:04](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:46, 05:41](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:43, 05:45](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:08, 09:37](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:26, 03:43] ( 849 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:31, 14:20](1706 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:30, 08:04] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:50, 04:11](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:29, 03:33](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:49, 03:43](889 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 03:19](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:16, 03:24](933 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:06, 03:43](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 02:05](735 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:04, 02:21](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:31, 08:02] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:56, 03:04](1022 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:19, 01:29](1146 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:29, 03:16](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [05:24, 02:06](690 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:27, 08:17] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 04:43](918 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:45] ( 782 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:38, 05:41](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:43, 05:26](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [26:48, 23:58](1101 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:49, 24:08](809 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:30, 13:42](1200 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [27:41, 24:41](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:35, 24:07](1173 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:21, 03:35] ( 782 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:44, 05:44](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [11:29, 09:58] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:32, 05:06](708 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:52, 06:11](918 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:01, 04:01](1046 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 12:20](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:41, 05:40](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:08, 06:59](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:20, 03:15](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:09, 09:23](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:20, 04:16](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:26, 03:47](499 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 01:52](407 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:36] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 06:15](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:27, 09:13] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:39, 07:10](764 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 07:11](741 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:29, 10:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:14, 05:22](1914 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 09:39] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:23, 04:42] ( 896 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:25, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:50, 06:04](3237 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:56, 05:47](3211 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:07, 06:17](3216 MB) + +PASS -- COMPILE 'atmaq_intel' [09:27, 07:59] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [23:52, 17:21](2386 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [26:25, 19:58](2438 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:44] ( 866 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:49, 41:29](1861 MB) SYNOPSIS: -Starting Date/Time: 20251015 14:30:30 -Ending Date/Time: 20251015 16:45:25 -Total Time: 02h:16m:33s -Compiles Completed: 35/35 -Tests Completed: 177/177 +Starting Date/Time: 20251027 14:36:02 +Ending Date/Time: 20251027 16:27:45 +Total Time: 01h:53m:07s +Compiles Completed: 33/33 +Tests Completed: 170/170 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/MOM_input_025.IN b/tests/parm/MOM_input_025.IN index b3ffa68793..07dc99f72e 100644 --- a/tests/parm/MOM_input_025.IN +++ b/tests/parm/MOM_input_025.IN @@ -62,7 +62,7 @@ THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False ! longer than the coupling timestep. The actual thermodynamic timestep that is ! used in this case is the largest integer multiple of the coupling timestep ! that is less than or equal to DT_THERM. -HFREEZE = 20.0 ! [m] default = -1.0 +HFREEZE = @[MOM6_HFREEZE] ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) @@ -425,7 +425,7 @@ VELOCITY_CONFIG = @[MOM6_INIT_UV] ! default = "zero" ! rossby_front - a mixed layer front in thermal wind balance. ! soliton - Equatorial Rossby soliton. ! USER - call a user modified routine. -VELOCITY_FILE = @[MOM6_WARMSTART_FILE] +VELOCITY_FILE = @[MOM6_WARMSTART_FILE] ! The name of the velocity initial condition file. U_IC_VAR = "u" ! default = "u" ! The initial condition variable for zonal velocity in VELOCITY_FILE. @@ -986,4 +986,4 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False RESTART_CHECKSUMS_REQUIRED = False ! === module MOM_file_parser === -USE_HUYNH_STENCIL_BUG = True +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN index df2d05294d..dc1ff5c535 100644 --- a/tests/parm/MOM_input_050.IN +++ b/tests/parm/MOM_input_050.IN @@ -62,7 +62,7 @@ THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False ! longer than the coupling timestep. The actual thermodynamic timestep that is ! used in this case is the largest integer multiple of the coupling timestep ! that is less than or equal to DT_THERM. -HFREEZE = 20.0 ! [m] default = -1.0 +HFREEZE = @[MOM6_HFREEZE] ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN index 825acfa044..2cb7885e41 100644 --- a/tests/parm/MOM_input_100.IN +++ b/tests/parm/MOM_input_100.IN @@ -32,7 +32,7 @@ THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False ! longer than the coupling timestep. The actual thermodynamic timestep that is ! used in this case is the largest integer multiple of the coupling timestep ! that is less than or equal to DT_THERM. -HFREEZE = 20.0 ! [m] default = -1.0 +HFREEZE = @[MOM6_HFREEZE] ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) diff --git a/tests/parm/MOM_input_500.IN b/tests/parm/MOM_input_500.IN index ac5456a070..351af36128 100644 --- a/tests/parm/MOM_input_500.IN +++ b/tests/parm/MOM_input_500.IN @@ -32,7 +32,7 @@ THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False ! longer than the coupling timestep. The actual thermodynamic timestep that is ! used in this case is the largest integer multiple of the coupling timestep ! that is less than or equal to DT_THERM. -HFREEZE = 20.0 ! [m] default = -1.0 +HFREEZE = @[MOM6_HFREEZE] ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) diff --git a/tests/parm/MOM_input_900.IN b/tests/parm/MOM_input_900.IN index 45c1ec339a..34c5afcae3 100644 --- a/tests/parm/MOM_input_900.IN +++ b/tests/parm/MOM_input_900.IN @@ -38,7 +38,7 @@ THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False ! The actual thermodynamic timestep that is used in this ! case is the largest integer multiple of the coupling ! timestep that is less than or equal to DT_THERM. -HFREEZE = 20.0 ! [m] default = -1.0 +HFREEZE = @[MOM6_HFREEZE] ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN deleted file mode 100644 index 6cfb330df0..0000000000 --- a/tests/parm/control_gfsv17.nml.IN +++ /dev/null @@ -1,349 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fms2_io_nml - netcdf_default_format = "netcdf4" -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] - increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = @[IAER] - icliq_sw = 2 - iovr = @[IOVR] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBGWD] - progsigma = @[PROGSIGMA] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,0,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - cplchm = @[CPLCHM] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .true. - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - fscav_aero = @[FSCAV_AERO] - do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_lwscat = @[DOGP_LWSCAT] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = @[FNSMCC_control] - FNMSKH = @[FNMSKH_control] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = @[FNABSC] - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - STOCHINI=@[STOCHINI], - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SKEBINT=1800, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SHUMINT=3600, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - SPPTINT=1800, - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 54 -/ - diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index fb7de3eb9b..b23abadb59 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -11,6 +11,7 @@ dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] restart_fh: @[RESTART_FH] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] diff --git a/tests/parm/model_configure_atmaq.IN b/tests/parm/model_configure_atmaq.IN index 805773be36..480d01dbdd 100644 --- a/tests/parm/model_configure_atmaq.IN +++ b/tests/parm/model_configure_atmaq.IN @@ -14,6 +14,7 @@ quantize_mode: 'quantize_bitround' quantize_nsd: @[QUANTIZE_NSD] quilting: @[QUILTING] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] write_groups: @[WRITE_GROUP] write_tasks_per_group: @[WRTTASK_PER_GROUP] num_files: @[NUM_FILES] diff --git a/tests/parm/model_configure_fire.IN b/tests/parm/model_configure_fire.IN index 80b8078f67..cc5c2e969c 100644 --- a/tests/parm/model_configure_fire.IN +++ b/tests/parm/model_configure_fire.IN @@ -9,6 +9,7 @@ fhrot: 0 RUN_CONTINUE: .false. ENS_SPS: .false. dt_atmos: @[DT_ATMOS] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] calendar: 'julian' memuse_verbose: .false. restart_interval: @[RESTART_INTERVAL] diff --git a/tests/parm/model_configure_gnv1.IN b/tests/parm/model_configure_gnv1.IN index 55d10df6d2..3a40c5bdfd 100644 --- a/tests/parm/model_configure_gnv1.IN +++ b/tests/parm/model_configure_gnv1.IN @@ -10,6 +10,7 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 73de3b5d0f..2152f59d7d 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -8,6 +8,7 @@ nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] diff --git a/tests/parm/model_configure_ideal.IN b/tests/parm/model_configure_ideal.IN index 5a1208e011..5aa74bc244 100644 --- a/tests/parm/model_configure_ideal.IN +++ b/tests/parm/model_configure_ideal.IN @@ -9,6 +9,7 @@ dt_atmos: 12 restart_interval: 0 cpl: .false. +use_saved_routehandles: .false. output_history: .true. quilting: .false. write_groups: 1 diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN index a2180d2eae..d6a335b582 100644 --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -12,6 +12,7 @@ cpl: .false. write_dopost: @[WRITE_DOPOST] output_history: .true. +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] quilting_restat: @[QUILTING_RESTART] write_groups: 1 diff --git a/tests/parm/model_configure_regional_rrfs_a.IN b/tests/parm/model_configure_regional_rrfs_a.IN index 16938bdda4..ab88282e15 100644 --- a/tests/parm/model_configure_regional_rrfs_a.IN +++ b/tests/parm/model_configure_regional_rrfs_a.IN @@ -11,7 +11,7 @@ restart_interval: @[RESTART_INTERVAL] quilting: @[QUILTING] zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] - +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] # # Write-component (quilting) computational parameters. diff --git a/tests/parm/model_configure_regional_stoch.IN b/tests/parm/model_configure_regional_stoch.IN index 21226fe47a..8b73aa26df 100644 --- a/tests/parm/model_configure_regional_stoch.IN +++ b/tests/parm/model_configure_regional_stoch.IN @@ -10,6 +10,7 @@ fhrot: @[FHROT] dt_atmos: 36 restart_interval: @[RESTART_INTERVAL] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] write_groups: 1 write_tasks_per_group: 12 diff --git a/tests/parm/model_configure_rrfs_conus13km.IN b/tests/parm/model_configure_rrfs_conus13km.IN index 97b95f17b0..94bd5a0efa 100644 --- a/tests/parm/model_configure_rrfs_conus13km.IN +++ b/tests/parm/model_configure_rrfs_conus13km.IN @@ -10,6 +10,7 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] +use_saved_routehandles: @[USE_FV3_ROUTEHANDLES] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index 4490a42059..4bcf3cbb69 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -5356,7 +5356,7 @@ BRTMP_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -BRTMP +BRTEMP ? ? top_of_atmos diff --git a/tests/parm/postxconfig-NT-gfs.txt b/tests/parm/postxconfig-NT-gfs.txt index fb2556c370..a31197ccba 100644 --- a/tests/parm/postxconfig-NT-gfs.txt +++ b/tests/parm/postxconfig-NT-gfs.txt @@ -3172,7 +3172,7 @@ BRTMP_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -BRTMP +BRTEMP ? ? top_of_atmos diff --git a/tests/parm/postxconfig-NT-gfs_FH00.txt b/tests/parm/postxconfig-NT-gfs_FH00.txt index 95c932343a..d926fd3a59 100644 --- a/tests/parm/postxconfig-NT-gfs_FH00.txt +++ b/tests/parm/postxconfig-NT-gfs_FH00.txt @@ -2332,7 +2332,7 @@ BRTMP_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -BRTMP +BRTEMP ? ? top_of_atmos diff --git a/tests/rt.conf b/tests/rt.conf index 9d4d75b2e3..7fb773b800 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -252,27 +252,27 @@ COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1 RUN | hafs_regional_atm | | baseline | RUN | hafs_regional_atm_gfdlmpv3 | | baseline | RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | -RUN | hafs_regional_atm_ocn | | baseline | +#RUN | hafs_regional_atm_ocn | | baseline | RUN | hafs_regional_atm_wav | | baseline | -RUN | hafs_regional_atm_ocn_wav | - noaacloud hera | baseline | +#RUN | hafs_regional_atm_ocn_wav | - noaacloud hera | baseline | RUN | hafs_regional_1nest_atm | - s4 noaacloud | baseline | RUN | hafs_regional_telescopic_2nests_atm | - s4 noaacloud | baseline | RUN | hafs_global_1nest_atm | - s4 noaacloud | baseline | RUN | hafs_global_multiple_4nests_atm | - s4 noaacloud | baseline | RUN | hafs_regional_specified_moving_1nest_atm | - s4 noaacloud | baseline | RUN | hafs_regional_storm_following_1nest_atm | - s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - s4 noaacloud | baseline | +#RUN | hafs_regional_storm_following_1nest_atm_ocn | - s4 noaacloud | baseline | RUN | hafs_global_storm_following_1nest_atm | - s4 noaacloud | baseline | # This probably works on S4, but I cannot know for certain. I don't have access to the machine. RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline | -COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - s4 noaacloud | baseline | +#COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - noaacloud s4 | fv3 | +#RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - s4 noaacloud | baseline | -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | - noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - s4 noaacloud | baseline | +#COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | - noaacloud s4 | fv3 | +#RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - s4 noaacloud | baseline | +#RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - s4 noaacloud | baseline | COMPILE | hafs_mom6w | intel| -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | - noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - s4 noaacloud | baseline | @@ -280,7 +280,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - s4 noaacloud COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | RUN | hafs_regional_docn | - noaacloud | baseline | RUN | hafs_regional_docn_oisst | - noaacloud | baseline | -RUN | hafs_regional_datm_cdeps | - s4 noaacloud | baseline | +#RUN | hafs_regional_datm_cdeps | - s4 noaacloud | baseline | ### CDEPS Data Atmosphere tests ### COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | @@ -379,11 +379,11 @@ COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP RUN | rap_control_dyn64_phy32 | + hera ursa | baseline | # HAFS tests -COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | + orion ursa | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn | + orion ursa | baseline | +#COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | + orion ursa | fv3 | +#RUN | hafs_regional_storm_following_1nest_atm_ocn | + orion ursa | baseline | -COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | + ursa | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | + ursa | baseline | +#COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | + ursa | fv3 | +#RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | + ursa | baseline | # DATM/CDEPS tests COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS | + ursa | fv3 | diff --git a/tests/rt_intelllvm.conf b/tests/rt_intelllvm.conf deleted file mode 100644 index e2e212c52e..0000000000 --- a/tests/rt_intelllvm.conf +++ /dev/null @@ -1,323 +0,0 @@ -### RT.CONF FORMATTING ### -# COMPILE Line ( Items separated by a | ) -# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job -# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. -# If two compilations are identical except compiler, please use the same name for each. -# Item 3: Compiler to use in build (intel or gnu) -# Item 4: CMAKE Options - Provide all CMAKE options for the build -# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) -## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines -## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn -# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code -# -# RUN Line ( Items separated by a | ) -## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test -# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run -# Item 2: Test name. (Which test in the tests/tests directory should be sourced) -# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). -## reference example above -# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. -# Item 5: Test name to compare baselines with if not itself. - -### IntelLLVM Tests ### -### S2S tests ### -COMPILE | s2swa_32bit | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | - -#GFS -COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_gfsv17 | - noaacloud | baseline | -RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 -RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 -RUN | cpld_mpi_gfsv17 | - noaacloud | | - -#SFS -COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_sfs | - noaacloud | baseline | - -COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud | baseline | - -COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_p8 | - noaacloud | baseline | -RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | -RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 -RUN | cpld_control_qr_p8 | - noaacloud | | -RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | - noaacloud | | -RUN | cpld_decomp_p8 | - noaacloud | | -RUN | cpld_mpi_p8 | - noaacloud | | -RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 acorn s4 noaacloud | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 acorn s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 acorn noaacloud | | cpld_bmark_p8 - -# Aerosol, no Wave -RUN | cpld_s2sa_p8 | - noaacloud | baseline | - -COMPILE | s2sw | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_noaero_p8 | | baseline | -RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | - -COMPILE | s2swa_debug | intelllvm | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | - -COMPILE | s2sw_debug | intelllvm | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | - -# Waves and aerosol off for computing fluxes in mediator -COMPILE | s2s_aoflux | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | -RUN | cpld_control_noaero_p8_agrid | | baseline | - -COMPILE | s2s | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_c48 | | baseline | -RUN | cpld_warmstart_c48 | - noaacloud | baseline | -RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 - -COMPILE | s2swa_faster | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DFASTER=ON | - noaacloud | fv3 | -RUN | cpld_control_p8_faster | - noaacloud | baseline | - -# Unstructured WW3 mesh -COMPILE | s2sw_pdlib | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | -RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 - -COMPILE | s2sw_pdlib_debug | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | - -### ATM tests ### -COMPILE | atm_dyn32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | -RUN | control_flake | | baseline | -RUN | control_CubedSphereGrid | | baseline | -RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | -RUN | control_latlon | | baseline | -RUN | control_wrtGauss_netcdf_parallel | | baseline | -RUN | control_c48 | | baseline | -RUN | control_c48.v2.sfc | | baseline | -RUN | control_c192 | - noaacloud | baseline | -RUN | control_c384 | | baseline | -RUN | control_c384gdas | - noaacloud | baseline | -RUN | control_stochy | | baseline | -RUN | control_stochy_restart | - noaacloud | | control_stochy -RUN | control_lndp | | baseline | -RUN | control_iovr4 | | baseline | -RUN | control_iovr5 | | baseline | -RUN | control_p8 | - noaacloud | baseline | -RUN | control_p8.v2.sfc | - noaacloud | baseline | -RUN | control_p8_ugwpv1 | - noaacloud | baseline | -RUN | control_restart_p8 | - noaacloud | | control_p8 -RUN | control_noqr_p8 | - noaacloud | | -RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 -RUN | control_decomp_p8 | - noaacloud | | -RUN | control_2threads_p8 | - noaacloud | | -RUN | control_p8_lndp | | baseline | -RUN | control_p8_rrtmgp | - noaacloud | baseline | -RUN | control_p8_mynn | - noaacloud | baseline | -RUN | merra2_thompson | - noaacloud | baseline | -RUN | regional_control | | baseline | -RUN | regional_restart | - noaacloud | | regional_control -RUN | regional_decomp | - noaacloud | | -RUN | regional_2threads | - derecho noaacloud | | -RUN | regional_noquilt | - s4 | baseline | -RUN | regional_netcdf_parallel | - acorn | baseline | -RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | - s4 | baseline | - -COMPILE | rrfs | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | -RUN | rap_control | | baseline | -RUN | regional_spp_sppt_shum_skeb | | baseline | -RUN | rap_decomp | - noaacloud | | -RUN | rap_2threads | - noaacloud | | -RUN | rap_restart | - noaacloud | | rap_control -RUN | rap_sfcdiff | - noaacloud | baseline | -RUN | rap_sfcdiff_decomp | - noaacloud | | -RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff -RUN | hrrr_control | - noaacloud | baseline | -RUN | hrrr_control_decomp | - noaacloud | | -RUN | hrrr_control_2threads | - noaacloud | | -RUN | hrrr_control_restart | - noaacloud | | hrrr_control -RUN | rrfs_v1beta | | baseline | -RUN | rrfs_v1nssl | | baseline | -RUN | rrfs_v1nssl_nohailnoccn | | baseline | - -COMPILE | csawmg | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | -RUN | control_csawmg | - noaacloud | baseline | -RUN | control_ras | - noaacloud | baseline | - -# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | wam | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | -RUN | control_wam | - noaacloud | baseline | - -COMPILE | atm_faster_dyn32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | -RUN | control_p8_faster | - noaacloud | baseline | -RUN | regional_control_faster | | baseline | - -### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intelllvm | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | -RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | -RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | -RUN | control_stochy_debug | - noaacloud | baseline | -RUN | control_lndp_debug | - noaacloud | baseline | -RUN | control_csawmg_debug | - noaacloud | baseline | -RUN | control_ras_debug | - noaacloud | baseline | -RUN | control_diag_debug | - noaacloud | baseline | -RUN | control_debug_p8 | - noaacloud | baseline | -RUN | regional_debug | - noaacloud | baseline | -RUN | rap_control_debug | - noaacloud | baseline | -RUN | hrrr_control_debug | - noaacloud | baseline | -RUN | hrrr_gf_debug | - noaacloud | baseline | -RUN | hrrr_c3_debug | - noaacloud | baseline | -RUN | rap_unified_drag_suite_debug | - noaacloud | | -RUN | rap_diag_debug | - noaacloud | baseline | -RUN | rap_cires_ugwp_debug | - noaacloud | baseline | -RUN | rap_unified_ugwp_debug | - noaacloud | | -RUN | rap_lndp_debug | - noaacloud | baseline | -RUN | rap_progcld_thompson_debug | - noaacloud | baseline | -RUN | rap_noah_debug | - noaacloud | baseline | -RUN | rap_sfcdiff_debug | - noaacloud | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | -RUN | rrfs_v1beta_debug | - noaacloud | baseline | -RUN | rap_clm_lake_debug | - noaacloud | baseline | -RUN | rap_flake_debug | - noaacloud | baseline | -RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | - -COMPILE | wam_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | control_wam_debug | - noaacloud | baseline | - -### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | -RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | -RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | -RUN | rap_2threads_dyn32_phy32 | - noaacloud | | -RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | -RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | -RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 - -COMPILE | rrfs_dyn32_phy32_faster | intelllvm | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | conus13km_control | - noaacloud | baseline | -RUN | conus13km_2threads | - noaacloud | | conus13km_control -RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control - -# Expected to fail: -# RUN | conus13km_restart | - noaacloud | | conus13km_control -# RUN | conus13km_decomp | - noaacloud | | conus13km_control - -COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | - -COMPILE | rrfs_dyn32_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_qr | - noaacloud | | -RUN | conus13km_debug_2threads | - noaacloud | | -RUN | conus13km_radar_tten_debug | - noaacloud | baseline | - -# Expected to fail: -# RUN | conus13km_debug_decomp | - noaacloud | | - -COMPILE | rrfs_dyn64_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | - -### HAFS tests ### -COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm | | baseline | -RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | -RUN | hafs_regional_atm_ocn | | baseline | -RUN | hafs_regional_atm_wav | | baseline | -RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | -RUN | hafs_regional_1nest_atm | - s4 noaacloud | baseline | -RUN | hafs_regional_telescopic_2nests_atm | - s4 noaacloud | baseline | -RUN | hafs_global_1nest_atm | - s4 noaacloud | baseline | -RUN | hafs_global_multiple_4nests_atm | - s4 noaacloud | baseline | -RUN | hafs_regional_specified_moving_1nest_atm | - s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm | - s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - s4 noaacloud | baseline | -RUN | hafs_global_storm_following_1nest_atm | - s4 noaacloud | baseline | - -# This probably works on S4, but I cannot know for certain. I don't have access to the machine. -RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline | - -COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - s4 noaacloud | baseline | - -COMPILE | hafsw_faster | intelllvm | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | - noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - s4 noaacloud | baseline | - -COMPILE | hafs_mom6w | intelllvm | -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | - noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - s4 noaacloud | baseline | - -COMPILE | hafs_all | intelllvm | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | -RUN | hafs_regional_docn | - noaacloud | baseline | -RUN | hafs_regional_docn_oisst | - noaacloud | baseline | -RUN | hafs_regional_datm_cdeps | - s4 noaacloud | baseline | - -### CDEPS Data Atmosphere tests ### -COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr -RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_bulk_cfsr | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_bulk_gefs | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | | -RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline | -RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline | - -COMPILE | datm_cdeps_debug | intelllvm | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 | -RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline | - -COMPILE | datm_cdeps_faster | intelllvm | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | - -### CDEPS Data Atmosphere tests with LND ### -COMPILE | datm_cdeps_land | intelllvm | -DAPP=LND | - wcoss2 | fv3 | -RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 - -### AMIP+ tests ### -COMPILE | atm_ds2s_docn_pcice | intelllvm | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | -COMPILE | atm_ds2s_docn_dice | intelllvm | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | -RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 - -### ATM-LND tests ### -COMPILE | atml | intelllvm | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | -RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | -RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd - -COMPILE | atml_debug | intelllvm | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | -RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | - -### ATM-WAV tests ### -#mediator (cmeps) -COMPILE | atmw | intelllvm | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | -RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | - -### ATM-GOCART tests ### -COMPILE | atmaero | intelllvm | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | -RUN | atmaero_control_p8 | - noaacloud | baseline | -RUN | atmaero_control_p8_rad | - noaacloud | baseline | -RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | - -### ATM-CMAQ tests ### -#COMPILE | atmaq | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - s4 | fv3 | -#RUN | regional_atmaq | - s4 | baseline | - -COMPILE | atmaq_debug | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - noaacloud s4 | fv3 | -RUN | regional_atmaq_debug | - s4 noaacloud | baseline | - -### ATM-FBH test ### -COMPILE | atm_fbh | intelllvm | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..183879e686 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,92 @@ +cpld_control_p8_mixedmode intel +cpld_control_gefs intel +cpld_restart_gefs intel +cpld_dcp_gefs intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_restart_gfsv17_iau 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_control_p8_lnd intel +cpld_restart_p8_lnd 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_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_control_c48_5deg intel +cpld_warmstart_c48_5deg intel +cpld_restart_c48_5deg intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48_lnd_iau intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_p8_ugwpv1_tempo intel +control_p8_ugwpv1_tempo_aerosol intel +control_p8_ugwpv1_tempo_aerosol_hail 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 +merra2_thompson intel +merra2_hf_thompson intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +control_wam_debug intel +hafs_regional_atm_thompson_gfdlsf intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_diag_debug gnu +control_debug_p8 gnu +control_wam_debug gnu +cpld_control_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_debug_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 982828af23..d935c6dd4e 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -96,6 +96,8 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads +export USE_FV3_ROUTEHANDLES=.true. + export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index e841095e10..a7b9123c8e 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -72,6 +72,8 @@ export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export USE_FV3_ROUTEHANDLES=.true. + # ATM warm start export WARM_START=.true. export MAKE_NH=.false.