From 219dd7e7ffe1a28f1e04a21cc7659d27e0a25eb8 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 05:32:28 -0400 Subject: [PATCH 01/48] fix acronym --- doc/UsersGuide/source/Acronyms.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/UsersGuide/source/Acronyms.rst b/doc/UsersGuide/source/Acronyms.rst index 1395ec20d7..b057e9cf84 100644 --- a/doc/UsersGuide/source/Acronyms.rst +++ b/doc/UsersGuide/source/Acronyms.rst @@ -37,7 +37,7 @@ Acronyms +----------------+---------------------------------------------------+ | GFS | Global Forecast System | +----------------+---------------------------------------------------+ - | GSD | Global Systems Division | + | GSL | Global Systems Laboratory | +----------------+---------------------------------------------------+ | HTML | Hypertext Markup Language | +----------------+---------------------------------------------------+ From bde5f6f341d5c8257d7c00ed0d3d3316eeceb231 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 05:48:17 -0400 Subject: [PATCH 02/48] chg pull_request_target labels to pull_request --- .github/workflows/update_project_labels.yaml | 40 ++++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index adc9bb45c0..c0c16d20d7 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -19,9 +19,9 @@ jobs: steps: - name: Lack of baseline labels if: | - !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -31,9 +31,9 @@ jobs: field-value: 'Unknown' - name: Contradictory labels if: | - contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) + contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request.labels.*.name, 'New Baselines')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -43,9 +43,9 @@ jobs: field-value: 'Unknown' - name: Baseline changes labels if: | - (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) && - !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') + (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request.labels.*.name, 'New Baselines')) && + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -55,9 +55,9 @@ jobs: field-value: 'Yes' - name: No baseline changes label if: | - contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -74,7 +74,7 @@ jobs: issues: write steps: - name: Input data required - if: contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes') + if: contains(github.event.pull_request.labels.*.name, 'Input Data Changes') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -83,7 +83,7 @@ jobs: field-name: "Input Data Req'd" field-value: 'Yes' - name: No input data changes - if: (!contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes')) + if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -102,8 +102,8 @@ jobs: steps: - name: Normal Priority if: | - !contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && - !contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && + !contains(github.event.pull_request.labels.*.name, 'Priority: High') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -112,7 +112,7 @@ jobs: field-name: 'Priority' field-value: 'Normal' - name: Critical priority - if: "contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical')" + if: "contains(github.event.pull_request.labels.*.name, 'Priority: Critical')" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -121,7 +121,7 @@ jobs: field-name: 'Priority' field-value: 'Yes' - name: High Priority - if: "(contains(github.event.pull_request_target.labels.*.name, 'Priority: High'))" + if: "(contains(github.event.pull_request.labels.*.name, 'Priority: High'))" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -131,8 +131,8 @@ jobs: field-value: 'High' - name: Unknown Priority if: | - contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && - contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && + contains(github.event.pull_request.labels.*.name, 'Priority: High') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From dc9450b465a57718b58afda67b9e7bf8e0d70066 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 05:53:41 -0400 Subject: [PATCH 03/48] add pull_request_target for labels --- .../update_project_labels_target.yaml | 142 ++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 .github/workflows/update_project_labels_target.yaml diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml new file mode 100644 index 0000000000..adc9bb45c0 --- /dev/null +++ b/.github/workflows/update_project_labels_target.yaml @@ -0,0 +1,142 @@ +name: Update Project Labels +on: + pull_request_target: + types: + - opened + - reopened + - labeled + - unlabeled + + +jobs: + baseline-labels: + name: Update project with baseline labels + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + steps: + - name: Lack of baseline labels + if: | + !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + 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: 'Baseline Changes' + field-value: 'Unknown' + - name: Contradictory labels + if: | + contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && + (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) + 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: 'Baseline Changes' + field-value: 'Unknown' + - name: Baseline changes labels + if: | + (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) && + !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') + 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: 'Baseline Changes' + field-value: 'Yes' + - name: No baseline changes label + if: | + contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + 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: 'Baseline Changes' + field-value: 'No' + data-labels: + name: Update project with input data labels + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + steps: + - name: Input data required + if: contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes') + 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' + - name: No input data changes + if: (!contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes')) + 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' + #Figure out "Combine" toggle & logic + priority-labels: + name: Update project with priority labels + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + steps: + - name: Normal Priority + if: | + !contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && + !contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + 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: 'Priority' + field-value: 'Normal' + - name: Critical priority + if: "contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical')" + 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: 'Priority' + field-value: 'Yes' + - name: High Priority + if: "(contains(github.event.pull_request_target.labels.*.name, 'Priority: High'))" + 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: 'Priority' + field-value: 'High' + - name: Unknown Priority + if: | + contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && + contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + 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: 'Priority' + field-value: 'Unknown' From a940bb1c6108cd182a6a3dc7e4e88082606c2919 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:02:56 -0400 Subject: [PATCH 04/48] change task names --- .github/workflows/update_project_labels.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index c0c16d20d7..3a6363c6da 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -10,7 +10,7 @@ on: jobs: baseline-labels: - name: Update project with baseline labels + name: Baseline labels runs-on: ubuntu-latest permissions: contents: read @@ -66,7 +66,7 @@ jobs: field-name: 'Baseline Changes' field-value: 'No' data-labels: - name: Update project with input data labels + name: Input data runs-on: ubuntu-latest permissions: contents: read @@ -93,7 +93,7 @@ jobs: field-value: 'No' #Figure out "Combine" toggle & logic priority-labels: - name: Update project with priority labels + name: Priority runs-on: ubuntu-latest permissions: contents: read From 4d619c47013dbf0489a6b1edb7059d9b5cee8be4 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:05:33 -0400 Subject: [PATCH 05/48] change task names --- .github/workflows/update_project_labels_target.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index adc9bb45c0..a77d990708 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -10,7 +10,7 @@ on: jobs: baseline-labels: - name: Update project with baseline labels + name: Baseline labels runs-on: ubuntu-latest permissions: contents: read @@ -66,7 +66,7 @@ jobs: field-name: 'Baseline Changes' field-value: 'No' data-labels: - name: Update project with input data labels + name: Input data runs-on: ubuntu-latest permissions: contents: read @@ -93,7 +93,7 @@ jobs: field-value: 'No' #Figure out "Combine" toggle & logic priority-labels: - name: Update project with priority labels + name: Priority runs-on: ubuntu-latest permissions: contents: read From 63640dd7b26a868a4bc38bca9d70c6fe095123ce Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:10:44 -0400 Subject: [PATCH 06/48] rename tasks; rm pull_request (no target) --- .github/workflows/update_project_labels.yaml | 158 ------------------- 1 file changed, 158 deletions(-) delete mode 100644 .github/workflows/update_project_labels.yaml diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml deleted file mode 100644 index 82da88b0e9..0000000000 --- a/.github/workflows/update_project_labels.yaml +++ /dev/null @@ -1,158 +0,0 @@ -name: Update Project Labels -on: - pull_request_target: - types: - - opened - - reopened - - labeled - - unlabeled - -jobs: - baseline-labels: - name: Baseline labels - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - issues: write - steps: - - name: Lack of baseline labels - if: | - !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request.labels.*.name, 'New Baselines') - 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: 'Baseline Changes' - field-value: 'Unknown' - - name: Contradictory labels - if: | - contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && - (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request.labels.*.name, 'New Baselines')) - 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: 'Baseline Changes' - field-value: 'Unknown' - - name: Baseline changes labels - if: | - (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request.labels.*.name, 'New Baselines')) && - !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') - 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: 'Baseline Changes' - field-value: 'Yes' - - name: No baseline changes label - if: | - contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request.labels.*.name, 'New Baselines') - 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: 'Baseline Changes' - field-value: 'No' - data-labels: - name: Input data - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - issues: write - steps: - - name: Input data required - if: contains(github.event.pull_request.labels.*.name, 'Input Data Changes') - 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' - - name: No input data changes - if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) - 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' - #Figure out "Combine" toggle & logic - priority-labels: - name: Priority - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - issues: write - steps: - - name: Normal Priority - if: | - !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && - !contains(github.event.pull_request.labels.*.name, 'Priority: High') - 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: 'Priority' - field-value: 'Normal' - - name: Critical priority - if: "contains(github.event.pull_request.labels.*.name, 'Priority: Critical')" - 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: 'Priority' - field-value: 'Yes' - - name: High Priority - if: "(contains(github.event.pull_request.labels.*.name, 'Priority: High'))" - 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: 'Priority' - field-value: 'High' - - name: Unknown Priority - if: | - contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && - contains(github.event.pull_request.labels.*.name, 'Priority: High') - 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: 'Priority' - field-value: 'Unknown' - subcomponent-labels: - name: Update project with input data labels - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - issues: write - steps: - - name: TBD - #if: (contains(github.event.pull_request.labels.*.name, 'Priority: High')) - #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: 'Baseline Changes' - #field-value: 'Yes' From e03930cad7a0c37f1abf59359197c7eea9ed8e79 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:30:41 -0400 Subject: [PATCH 07/48] clarify PR template language around test_changes.list --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f3fa263689..4b9ea4089c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -15,7 +15,7 @@ - [ ] All subcomponent pull requests (if any) have been reviewed by their code managers. - [ ] Run the full Intel+GNU RT suite (compared to current baselines), preferably on Ursa (Derecho or Hercules are acceptable alternatives). **Exceptions:** documentation-only PRs, CI-only PRs, etc. - [ ] Commit log file w/full results from RT suite run (if applicable). - - [ ] Commit 'test_changes.list' (unless file is empty). + - [ ] Verify that 'test_changes.list' indicates which tests, if any, are changed by this PR. If needed, commit the updated 'test_changes.list' file. - [ ] Fill out all sections of this template. --- From 6eb07b7c9741b7f94c1c2e9b90562fea773d3696 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:53:40 -0400 Subject: [PATCH 08/48] chg data in to pull_request from pr target --- .github/workflows/update_project_labels_target.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index a77d990708..ac733d5515 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -74,7 +74,7 @@ jobs: issues: write steps: - name: Input data required - if: contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes') + if: contains(github.event.pull_request.labels.*.name, 'Input Data Changes') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -83,7 +83,7 @@ jobs: field-name: "Input Data Req'd" field-value: 'Yes' - name: No input data changes - if: (!contains(github.event.pull_request_target.labels.*.name, 'Input Data Changes')) + if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From a2bb75a9478fcf45b3fe02fbf67b8a8e34a3674b Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 19:59:55 -0400 Subject: [PATCH 09/48] chg to pull_request from pr target --- .../update_project_labels_target.yaml | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index ac733d5515..3a6363c6da 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -19,9 +19,9 @@ jobs: steps: - name: Lack of baseline labels if: | - !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -31,9 +31,9 @@ jobs: field-value: 'Unknown' - name: Contradictory labels if: | - contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) + contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request.labels.*.name, 'New Baselines')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -43,9 +43,9 @@ jobs: field-value: 'Unknown' - name: Baseline changes labels if: | - (contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request_target.labels.*.name, 'New Baselines')) && - !contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') + (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request.labels.*.name, 'New Baselines')) && + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -55,9 +55,9 @@ jobs: field-value: 'Yes' - name: No baseline changes label if: | - contains(github.event.pull_request_target.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request_target.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request_target.labels.*.name, 'New Baselines') + contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -102,8 +102,8 @@ jobs: steps: - name: Normal Priority if: | - !contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && - !contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && + !contains(github.event.pull_request.labels.*.name, 'Priority: High') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -112,7 +112,7 @@ jobs: field-name: 'Priority' field-value: 'Normal' - name: Critical priority - if: "contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical')" + if: "contains(github.event.pull_request.labels.*.name, 'Priority: Critical')" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -121,7 +121,7 @@ jobs: field-name: 'Priority' field-value: 'Yes' - name: High Priority - if: "(contains(github.event.pull_request_target.labels.*.name, 'Priority: High'))" + if: "(contains(github.event.pull_request.labels.*.name, 'Priority: High'))" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -131,8 +131,8 @@ jobs: field-value: 'High' - name: Unknown Priority if: | - contains(github.event.pull_request_target.labels.*.name, 'Priority: Critical') && - contains(github.event.pull_request_target.labels.*.name, 'Priority: High') + contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && + contains(github.event.pull_request.labels.*.name, 'Priority: High') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From b5421fee113595777be73ad97dadd401cad2e2af Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 20:10:50 -0400 Subject: [PATCH 10/48] fix critical priority --- .github/workflows/update_project_labels_target.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index 3a6363c6da..4c2141bb25 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -119,7 +119,7 @@ jobs: project-url: https://github.com/orgs/NOAA-EPIC/projects/18 github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: 'Priority' - field-value: 'Yes' + field-value: 'Critical' - name: High Priority if: "(contains(github.event.pull_request.labels.*.name, 'Priority: High'))" uses: nipe0324/update-project-v2-item-field@v2.0.2 From 658f60a001a4f1539d58355cc086036922e6a8ad Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 20:34:40 -0400 Subject: [PATCH 11/48] fix parentheses? --- .github/workflows/update_project_labels_target.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index 4c2141bb25..9f88434538 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -19,9 +19,9 @@ jobs: steps: - name: Lack of baseline labels if: | - !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && - !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && - !contains(github.event.pull_request.labels.*.name, 'New Baselines') + (!contains(github.event.pull_request.labels.*.name, 'No Baseline Change')) && + (!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')) && + (!contains(github.event.pull_request.labels.*.name, 'New Baselines')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 @@ -43,9 +43,9 @@ jobs: field-value: 'Unknown' - name: Baseline changes labels if: | - (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || - contains(github.event.pull_request.labels.*.name, 'New Baselines')) && - !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + ( contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + contains(github.event.pull_request.labels.*.name, 'New Baselines') ) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 2865a965c07845545a85eb1b2ff51bf3bfbeaf32 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 20:37:18 -0400 Subject: [PATCH 12/48] add quotes for BL labels --- .github/workflows/update_project_labels_target.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index 9f88434538..a944b010f3 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -19,9 +19,9 @@ jobs: steps: - name: Lack of baseline labels if: | - (!contains(github.event.pull_request.labels.*.name, 'No Baseline Change')) && - (!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')) && - (!contains(github.event.pull_request.labels.*.name, 'New Baselines')) + "!contains(github.event.pull_request.labels.*.name, 'No Baseline Change')" && + "!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')" && + "!contains(github.event.pull_request.labels.*.name, 'New Baselines')" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 0d0caa472d7f47142688a651bef5fc71e4313865 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 20:42:49 -0400 Subject: [PATCH 13/48] fix spaces --- .github/workflows/update_project_labels_target.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index a944b010f3..f673a0aed6 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -20,7 +20,7 @@ jobs: - name: Lack of baseline labels if: | "!contains(github.event.pull_request.labels.*.name, 'No Baseline Change')" && - "!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')" && + "!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')" && "!contains(github.event.pull_request.labels.*.name, 'New Baselines')" uses: nipe0324/update-project-v2-item-field@v2.0.2 with: @@ -32,7 +32,7 @@ jobs: - name: Contradictory labels if: | contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && - (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || + (contains(github.event.pull_request.labels.*.name, 'Baseline Updates') || contains(github.event.pull_request.labels.*.name, 'New Baselines')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: From 44af740b15eb17be5dd5374a98515d16c7f17500 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 20:54:32 -0400 Subject: [PATCH 14/48] rm extraneous quotes --- .github/workflows/update_project_labels_target.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index f673a0aed6..0cb061d709 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -19,9 +19,9 @@ jobs: steps: - name: Lack of baseline labels if: | - "!contains(github.event.pull_request.labels.*.name, 'No Baseline Change')" && - "!contains(github.event.pull_request.labels.*.name, 'Baseline Updates')" && - "!contains(github.event.pull_request.labels.*.name, 'New Baselines')" + !contains(github.event.pull_request.labels.*.name, 'No Baseline Change') && + !contains(github.event.pull_request.labels.*.name, 'Baseline Updates') && + !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 8fc40b7e3d169a5bb616637740f84a2cff2a938c Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 21:29:51 -0400 Subject: [PATCH 15/48] fix whitespace --- .github/workflows/update_project_labels_target.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels_target.yaml index 0cb061d709..c604ced643 100644 --- a/.github/workflows/update_project_labels_target.yaml +++ b/.github/workflows/update_project_labels_target.yaml @@ -7,7 +7,6 @@ on: - labeled - unlabeled - jobs: baseline-labels: name: Baseline labels From d0267a6f34fffb4772aad98709214ba93527e9b9 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 21:32:30 -0400 Subject: [PATCH 16/48] remove labeled for add PR to project --- .github/workflows/add_pr_to_project.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/add_pr_to_project.yaml b/.github/workflows/add_pr_to_project.yaml index 012559a84d..68455f0061 100644 --- a/.github/workflows/add_pr_to_project.yaml +++ b/.github/workflows/add_pr_to_project.yaml @@ -4,7 +4,6 @@ on: types: - opened - reopened - - labeled jobs: add-to-project: From 414fe28855ccf843a9af230d10e5b711978dd30a Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 21:33:42 -0400 Subject: [PATCH 17/48] rename file --- ...date_project_labels_target.yaml => update_project_labels.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{update_project_labels_target.yaml => update_project_labels.yaml} (100%) diff --git a/.github/workflows/update_project_labels_target.yaml b/.github/workflows/update_project_labels.yaml similarity index 100% rename from .github/workflows/update_project_labels_target.yaml rename to .github/workflows/update_project_labels.yaml From 02f245dbb173a0b0e615b223bc734ae0e87c84ae Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 21:56:31 -0400 Subject: [PATCH 18/48] address combinability for priority --- .github/workflows/update_project_labels.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index c604ced643..337a78c59d 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -98,11 +98,25 @@ jobs: contents: read pull-requests: write issues: write + env: + - PRIORITY: '' steps: + - name: Combinable? + uses: EndBug/project-fields@v2 + id: fields + with: + operation: get + fields: Priority + github_token: ${{ secrets.PR_PROJECT_TOKEN }} + project_url: https://github.com/ufs-community/ufs-weather-model/pull/${{ github.event.pull_request.number }} + run: | + echo ${{ github.event.pull_request.number }} + PRIORITY=${{ steps.fields.outputs.values }} - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && - !contains(github.event.pull_request.labels.*.name, 'Priority: High') + !contains(github.event.pull_request.labels.*.name, 'Priority: High') && + $PRIORITY!='Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 72d05e07c777349cd249eeec474d480fe34a3dbd Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:11:07 -0400 Subject: [PATCH 19/48] get priority field --- .github/workflows/update_project_labels.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 337a78c59d..a40d47eaea 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -90,7 +90,6 @@ jobs: github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: "Input Data Req'd" field-value: 'No' - #Figure out "Combine" toggle & logic priority-labels: name: Priority runs-on: ubuntu-latest @@ -101,17 +100,16 @@ jobs: env: - PRIORITY: '' steps: - - name: Combinable? + - name: Read Priority field uses: EndBug/project-fields@v2 - id: fields + id: priority_field with: operation: get fields: Priority github_token: ${{ secrets.PR_PROJECT_TOKEN }} - project_url: https://github.com/ufs-community/ufs-weather-model/pull/${{ github.event.pull_request.number }} - run: | - echo ${{ github.event.pull_request.number }} - PRIORITY=${{ steps.fields.outputs.values }} + project_url: ${{ github.event.pull_request.html_url }} + - name: Assign value to Priority field + run: PRIORITY=${{ steps.priority_field.outputs.values }} - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From 14e6521a31a76da0ff31597795e91c08f20d7af8 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:14:29 -0400 Subject: [PATCH 20/48] rm extra - --- .github/workflows/update_project_labels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index a40d47eaea..80c58f12cb 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -98,7 +98,7 @@ jobs: pull-requests: write issues: write env: - - PRIORITY: '' + PRIORITY: '' steps: - name: Read Priority field uses: EndBug/project-fields@v2 From 487c9645b7998ca09b9d3354883baf3e8099bd61 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:18:56 -0400 Subject: [PATCH 21/48] properly assign --- .github/workflows/update_project_labels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 80c58f12cb..8287599876 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -109,7 +109,7 @@ jobs: github_token: ${{ secrets.PR_PROJECT_TOKEN }} project_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field - run: PRIORITY=${{ steps.priority_field.outputs.values }} + run: echo "PRIORITY=${{ steps.priority_field.outputs.values }}" >> $GITHUB_ENV - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From ed2f68087874333efbd17b882bf42e443c34ab27 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:21:36 -0400 Subject: [PATCH 22/48] properly assign --- .github/workflows/update_project_labels.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 8287599876..0d2fabe1e9 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -109,7 +109,9 @@ jobs: github_token: ${{ secrets.PR_PROJECT_TOKEN }} project_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field - run: echo "PRIORITY=${{ steps.priority_field.outputs.values }}" >> $GITHUB_ENV + run: | + PRIORITY="${{ steps.priority_field.outputs.values }}" + echo "PRIORITY=$PRIORITY" >> $GITHUB_ENV - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From 493b3ab9920227bafa8191326f487955ff1ce8c0 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:25:00 -0400 Subject: [PATCH 23/48] properly assign --- .github/workflows/update_project_labels.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 0d2fabe1e9..30cd38864d 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -110,8 +110,9 @@ jobs: project_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field run: | - PRIORITY="${{ steps.priority_field.outputs.values }}" - echo "PRIORITY=$PRIORITY" >> $GITHUB_ENV + priority="${{ steps.priority_field.outputs.values }}" + echo $PRIORITY + echo "PRIORITY=$priority" >> $GITHUB_ENV - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From ac3287bb5b6e25cf2f83b67608a3c9c67ac95e83 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:29:45 -0400 Subject: [PATCH 24/48] access --- .github/workflows/update_project_labels.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 30cd38864d..80a961893d 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -112,12 +112,13 @@ jobs: run: | priority="${{ steps.priority_field.outputs.values }}" echo $PRIORITY + echo $priority echo "PRIORITY=$priority" >> $GITHUB_ENV - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && !contains(github.event.pull_request.labels.*.name, 'Priority: High') && - $PRIORITY!='Combine' + ${{ env.PRIORITY }}!='Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 6ca0294dfa2b83ee7d4c73a719de0c7a1d81db89 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:33:50 -0400 Subject: [PATCH 25/48] fix project/resource url --- .github/workflows/update_project_labels.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 80a961893d..24cf38f393 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -101,13 +101,15 @@ jobs: PRIORITY: '' steps: - name: Read Priority field - uses: EndBug/project-fields@v2 + uses: EndBug/project-fields@v2.1.0 id: priority_field with: operation: get fields: Priority github_token: ${{ secrets.PR_PROJECT_TOKEN }} - project_url: ${{ github.event.pull_request.html_url }} + #project-url: https://github.com/orgs/ufs-community/projects/70 + project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + resource_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field run: | priority="${{ steps.priority_field.outputs.values }}" From 539dfb9c386413737dcafe6912d342985aba6076 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:35:35 -0400 Subject: [PATCH 26/48] fix typo --- .github/workflows/update_project_labels.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 24cf38f393..01fde63bbc 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -107,8 +107,8 @@ jobs: operation: get fields: Priority github_token: ${{ secrets.PR_PROJECT_TOKEN }} - #project-url: https://github.com/orgs/ufs-community/projects/70 - project-url: https://github.com/orgs/NOAA-EPIC/projects/18 + #project_url: https://github.com/orgs/ufs-community/projects/70 + project_url: https://github.com/orgs/NOAA-EPIC/projects/18 resource_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field run: | From f7918e6bac3bdfe612118cac5c16c934c5cc69d3 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:42:14 -0400 Subject: [PATCH 27/48] echo priority --- .github/workflows/update_project_labels.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 01fde63bbc..65f88375b1 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -113,9 +113,8 @@ jobs: - name: Assign value to Priority field run: | priority="${{ steps.priority_field.outputs.values }}" - echo $PRIORITY - echo $priority echo "PRIORITY=$priority" >> $GITHUB_ENV + echo ${{ env.PRIORITY }} - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From 135c7a1bc66f730b28cda76d26075424e34477a8 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:45:46 -0400 Subject: [PATCH 28/48] access --- .github/workflows/update_project_labels.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 65f88375b1..5648b607cf 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -114,12 +114,11 @@ jobs: run: | priority="${{ steps.priority_field.outputs.values }}" echo "PRIORITY=$priority" >> $GITHUB_ENV - echo ${{ env.PRIORITY }} - 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' + $PRIORITY!='Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 5fdd223d0255a27323b8d857c333780aab6edad1 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:50:23 -0400 Subject: [PATCH 29/48] test syntax --- .github/workflows/update_project_labels.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 5648b607cf..0e634dbc4c 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -114,6 +114,8 @@ jobs: run: | priority="${{ steps.priority_field.outputs.values }}" echo "PRIORITY=$priority" >> $GITHUB_ENV + echo $($PRIORITY!='Combine') + echo ${{ env.PRIORITY != 'Combine' }} - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From 7ebad44de2885211ce29a94b9998919068c0e9d2 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 22:55:53 -0400 Subject: [PATCH 30/48] test combinability --- .github/workflows/update_project_labels.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 0e634dbc4c..faab25662c 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -114,13 +114,11 @@ jobs: run: | priority="${{ steps.priority_field.outputs.values }}" echo "PRIORITY=$priority" >> $GITHUB_ENV - echo $($PRIORITY!='Combine') - echo ${{ env.PRIORITY != 'Combine' }} - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && !contains(github.event.pull_request.labels.*.name, 'Priority: High') && - $PRIORITY!='Combine' + ${{ env.PRIORITY != 'Combine' }} uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From d6003df2972e178456c9f3cdf84235647a61a5e0 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 23:10:57 -0400 Subject: [PATCH 31/48] add test echo --- .github/workflows/update_project_labels.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index faab25662c..122fa625e1 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -114,6 +114,8 @@ jobs: run: | priority="${{ steps.priority_field.outputs.values }}" echo "PRIORITY=$priority" >> $GITHUB_ENV + echo $PRIORITY + echo $( [ $PRIORITY != 'Combine' ] ) - name: Normal Priority if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && From c8fecd701e84946cba13769d45bb9522ea3b103b Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Fri, 3 Oct 2025 10:43:40 -0400 Subject: [PATCH 32/48] rm rt_intelllvm.conf --- tests/rt_intelllvm.conf | 323 ---------------------------------------- 1 file changed, 323 deletions(-) delete mode 100644 tests/rt_intelllvm.conf 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 | From 35d18d2b6d0d51a0847fd55b8ac98adec35a1473 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Thu, 16 Oct 2025 16:35:40 -0400 Subject: [PATCH 33/48] resolve merge conflicts --- .github/workflows/update_project_labels.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 2bc4a2f4f2..122fa625e1 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -47,12 +47,8 @@ jobs: contains(github.event.pull_request.labels.*.name, 'New Baselines') ) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: -<<<<<<< HEAD #project-url: https://github.com/orgs/ufs-community/projects/70 project-url: https://github.com/orgs/NOAA-EPIC/projects/18 -======= - project-url: https://github.com/orgs/ufs-community/projects/70 ->>>>>>> b1308c13977752024670d7b6847c8c38aa4a5b5b github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: 'Baseline Changes' field-value: 'Yes' @@ -63,12 +59,8 @@ jobs: !contains(github.event.pull_request.labels.*.name, 'New Baselines') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: -<<<<<<< HEAD #project-url: https://github.com/orgs/ufs-community/projects/70 project-url: https://github.com/orgs/NOAA-EPIC/projects/18 -======= - project-url: https://github.com/orgs/ufs-community/projects/70 ->>>>>>> b1308c13977752024670d7b6847c8c38aa4a5b5b github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: 'Baseline Changes' field-value: 'No' @@ -84,12 +76,8 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'Input Data Changes') uses: nipe0324/update-project-v2-item-field@v2.0.2 with: -<<<<<<< HEAD #project-url: https://github.com/orgs/ufs-community/projects/70 project-url: https://github.com/orgs/NOAA-EPIC/projects/18 -======= - project-url: https://github.com/orgs/ufs-community/projects/70 ->>>>>>> b1308c13977752024670d7b6847c8c38aa4a5b5b github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: "Input Data Req'd" field-value: 'Yes' @@ -97,7 +85,6 @@ jobs: if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) uses: nipe0324/update-project-v2-item-field@v2.0.2 with: -<<<<<<< HEAD #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 }} @@ -170,9 +157,3 @@ jobs: github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: 'Priority' field-value: 'Unknown' -======= - project-url: https://github.com/orgs/ufs-community/projects/70 - github-token: ${{ secrets.PR_PROJECT_TOKEN }} - field-name: "Input Data Req'd" - field-value: 'No' ->>>>>>> b1308c13977752024670d7b6847c8c38aa4a5b5b From 605f6c9e14943fe6018013f45be52d67f49b0f9a Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 21 Oct 2025 08:52:24 -0400 Subject: [PATCH 34/48] set date opened --- .github/workflows/add_pr_to_project.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add_pr_to_project.yaml b/.github/workflows/add_pr_to_project.yaml index 68455f0061..ea476f47d9 100644 --- a/.github/workflows/add_pr_to_project.yaml +++ b/.github/workflows/add_pr_to_project.yaml @@ -14,8 +14,17 @@ jobs: pull-requests: write issues: write steps: - - uses: actions/add-to-project@v1.0.2 + - name: Add PR + uses: actions/add-to-project@v1.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 }} + - name: Add date created + 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: 'Date Opened' + field-value: ${{ github.event.pull_request.created_at }} From 569378d3d0d696fde7af3f1967c652d62bdaae5c Mon Sep 17 00:00:00 2001 From: Gillian Petro <96886803+gspetro-NOAA@users.noreply.github.com> Date: Tue, 21 Oct 2025 10:14:15 -0400 Subject: [PATCH 35/48] fix check for Combine --- .github/workflows/update_project_labels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 122fa625e1..12b64948b2 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -120,7 +120,7 @@ jobs: if: | !contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && !contains(github.event.pull_request.labels.*.name, 'Priority: High') && - ${{ env.PRIORITY != 'Combine' }} + ${{ env.PRIORITY }} != 'Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 19d3f4a01ad25c9db906a53820e6a251223ba0b2 Mon Sep 17 00:00:00 2001 From: Gillian Petro <96886803+gspetro-NOAA@users.noreply.github.com> Date: Tue, 21 Oct 2025 11:32:55 -0400 Subject: [PATCH 36/48] Update priority syntax --- .github/workflows/update_project_labels.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 553f8c4b0d..bda3a86b0c 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: @@ -113,16 +112,14 @@ jobs: resource_url: ${{ github.event.pull_request.html_url }} - name: Assign value to Priority field run: | - priority="${{ steps.priority_field.outputs.values }}" - echo $priority - echo "PRIORITY=$priority" >> $GITHUB_ENV + PRIORITY="${{ steps.priority_field.outputs.values }}" echo $PRIORITY - echo $( [ $PRIORITY != 'Combine' ] ) + echo "PRIORITY=$PRIORITY" >> $GITHUB_ENV - 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' }} + '${{ env.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 +128,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') && + '${{ env.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 +139,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')) && + '${{ env.PRIORITY }}' != 'Combine' uses: nipe0324/update-project-v2-item-field@v2.0.2 with: #project-url: https://github.com/orgs/ufs-community/projects/70 From 7314e791e0f327e4ab2a1ff6dd3756cf3712fa83 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 21 Oct 2025 12:40:42 -0400 Subject: [PATCH 37/48] switch to gha outputs instead of env vars --- .github/workflows/update_project_labels.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index bda3a86b0c..22776cc52c 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -97,8 +97,6 @@ jobs: contents: read pull-requests: write issues: write - env: - PRIORITY: '' steps: - name: Read Priority field uses: EndBug/project-fields@v2.1.0 @@ -111,15 +109,16 @@ 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=$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 @@ -130,7 +129,7 @@ jobs: - name: Critical priority if: | contains(github.event.pull_request.labels.*.name, 'Priority: Critical') && - '${{ 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 @@ -141,7 +140,7 @@ jobs: - name: High Priority if: | (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 From a99e3774ef3b4d492f0a8e0a364491dc05849b91 Mon Sep 17 00:00:00 2001 From: KaiWang-NOAA <109170734+KaiWang-NOAA@users.noreply.github.com> Date: Tue, 21 Oct 2025 14:15:50 -0400 Subject: [PATCH 38/48] Update the AQM sub-component to brining missing commits from production/AQM.v7 and reverse the Rsnow value + allow hfreeze as a parameter for MOM_input #2920 (#2893) * UFSWM - Add a variable to set the hfreeze value for MOM6 input. * AQM - Bring in additional changes from production/AQM.v7 and reversed the Rsnow value --- AQM | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 7 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 556 +++++------ tests/logs/RegressionTests_gaeac6.log | 576 ++++++------ tests/logs/RegressionTests_hera.log | 830 ++++++++--------- tests/logs/RegressionTests_hercules.log | 830 +++++++++-------- tests/logs/RegressionTests_orion.log | 590 ++++++------ tests/logs/RegressionTests_ursa.log | 860 +++++++++--------- tests/logs/RegressionTests_wcoss2.log | 506 +++++------ tests/parm/MOM_input_025.IN | 6 +- tests/parm/MOM_input_050.IN | 2 +- tests/parm/MOM_input_100.IN | 2 +- tests/parm/MOM_input_500.IN | 2 +- tests/parm/MOM_input_900.IN | 2 +- tests/test_changes.list | 3 + 19 files changed, 2452 insertions(+), 2454 deletions(-) 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/tests/bl_date.conf b/tests/bl_date.conf index ba01c0ca7b..f6592fca6e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251007 +export BL_DATE=20251017 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index e6df0c15c5..8d0c436a0c 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. @@ -1631,6 +1631,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/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index f0ff8b5c48..1781149dea 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 +Mon Oct 20 12:01: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_1321507/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 = 252.660615 + 0: The maximum resident set size (KB) = 1557096 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_1321507/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 = 886.482347 + 0: The maximum resident set size (KB) = 1537088 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_1321507/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 = 227.089729 + 0: The maximum resident set size (KB) = 1530756 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_1321507/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 = 226.772719 + 0: The maximum resident set size (KB) = 1539436 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_1321507/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 = 226.817856 + 0: The maximum resident set size (KB) = 1520660 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_1321507/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 = 228.344215 + 0: The maximum resident set size (KB) = 1517288 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_1321507/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 = 229.996447 + 0: The maximum resident set size (KB) = 1541988 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! +Mon Oct 20 13:04:51 UTC 2025 +Elapsed time: 01h:02m:58s. 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..bc5a02e557 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 +Mon Oct 20 10:37:31 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_799472/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 = 2275.012814 + 0: The maximum resident set size (KB) = 1659608 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_799472/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 = 589.705345 + 0: The maximum resident set size (KB) = 1640584 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_799472/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 = 581.221056 + 0: The maximum resident set size (KB) = 1639980 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! +Mon Oct 20 12:01:53 UTC 2025 +Elapsed time: 01h:24m:23s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d7efb736f3..e9cb740567 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 +Mon Oct 20 09:44:24 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_631636/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 = 610.163490 + 0: The maximum resident set size (KB) = 880648 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_631636/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 = 496.818161 + 0: The maximum resident set size (KB) = 833656 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_631636/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 = 491.140693 + 0: The maximum resident set size (KB) = 845228 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_631636/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 = 488.996245 + 0: The maximum resident set size (KB) = 846476 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! +Mon Oct 20 10:37:30 UTC 2025 +Elapsed time: 00h:53m:06s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 789b8a5a4c..faa1d872cd 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 +d897bb57e6fa3d94a101b637faa7be2d00f2c478 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,295 +40,295 @@ 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-20251017 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2322077 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 's2swa_32bit_intel' [13:26, 11:45] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:34](3332 MB) +PASS -- TEST 'cpld_control_gefs_intel' [59:36, 16:14](4118 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:19, 07:41](3927 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 13:11] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:36, 15:07](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:35, 16:26](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:12, 07:19](1069 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:31, 07:29](1926 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:58, 17:30](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 13:07] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:40, 15:29](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:15] ( 1537 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:25, 20:13](1943 MB) + +PASS -- COMPILE 's2swa_intel' [13:26, 11:47] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:24, 08:16](3364 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:23, 08:25](3364 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:27, 04:37](3247 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:17, 08:09](3387 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:56, 04:47](3268 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:25, 07:34](3582 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:25, 08:03](3360 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 06:50](3306 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:49, 08:09](3365 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:58] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [25:45, 08:17](3367 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:27, 04:49](3246 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 08:15](3339 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:05] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:50](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:59, 07:12](1972 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:05](1974 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:15, 08:01](3363 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:33] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:09, 14:56](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:04, 07:24](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:24, 17:28](1894 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:41, 06:13](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:35, 02:05](2897 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:23, 01:25](2308 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:02, 01:28](2113 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:03, 00:58](2113 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:46, 00:47](1459 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:02, 01:21](2113 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:03, 00:59](2108 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:46, 00:58](1458 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:02, 00:55](2040 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:02, 00:50](2039 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:47, 00:44](1394 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:41] ( 1537 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:17, 23:58](1976 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:41, 04:01](683 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:43, 02:33](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:47, 02:45](1586 MB) +PASS -- TEST 'control_latlon_intel' [10:36, 02:40](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:43, 02:42](1582 MB) +PASS -- TEST 'control_c48_intel' [13:53, 06:38](1594 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:52, 06:02](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 06:46](1596 MB) +PASS -- TEST 'control_c192_intel' [14:03, 07:24](1703 MB) +PASS -- TEST 'control_c384_intel' [50:53, 08:48](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [57:32, 09:21](1174 MB) +PASS -- TEST 'control_stochy_intel' [09:39, 01:54](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:37, 01:19](402 MB) +PASS -- TEST 'control_lndp_intel' [09:38, 02:00](636 MB) +PASS -- TEST 'control_iovr4_intel' [10:40, 02:40](629 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [12:03, 03:11](918 MB) +PASS -- TEST 'control_iovr5_intel' [10:41, 02:49](632 MB) +PASS -- TEST 'control_p8_intel' [11:28, 03:04](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:43, 03:14](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:16, 03:00](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:22, 02:57](1878 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:43, 03:12](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:48, 02:21](2435 MB) +PASS -- TEST 'control_restart_p8_intel' [09:20, 01:56](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:40, 03:02](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:40, 01:57](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:38, 03:04](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:58, 02:55](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:02, 05:12](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:22, 04:10](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:13, 03:17](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [11:44, 03:42](1866 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:23, 04:44](1871 MB) +PASS -- TEST 'regional_control_intel' [07:56, 05:17](871 MB) +PASS -- TEST 'regional_restart_intel' [06:54, 02:53](882 MB) +PASS -- TEST 'regional_decomp_intel' [07:50, 05:28](877 MB) +PASS -- TEST 'regional_2threads_intel' [11:59, 03:20](987 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 05:10](1174 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:48, 05:17](871 MB) +PASS -- TEST 'regional_wofs_intel' [11:57, 07:02](1607 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:24, 09:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [12:20, 03:54](1888 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:32] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [10:01, 04:13](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:22, 04:19](1204 MB) +PASS -- TEST 'rap_decomp_intel' [09:31, 04:14](1012 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 03:47](1098 MB) +PASS -- TEST 'rap_restart_intel' [07:20, 02:23](767 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:16, 04:07](1014 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 04:12](1015 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:44, 02:15](766 MB) +PASS -- TEST 'hrrr_control_intel' [08:54, 03:58](1008 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:28, 04:08](1010 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:34](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:46, 02:11](761 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:07, 07:18](1009 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 09:32](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:47, 09:09](1966 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:45] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:57, 06:46](962 MB) +PASS -- TEST 'control_ras_intel' [06:32, 03:27](667 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:15, 12:33](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 07:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:17, 03:05](1862 MB) +PASS -- TEST 'regional_control_faster_intel' [07:53, 05:02](873 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:50] ( 890 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:45, 02:40](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:48, 02:49](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:39, 03:33](822 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:36, 03:16](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:58, 04:55](1116 MB) +PASS -- TEST 'control_ras_debug_intel' [09:35, 03:19](827 MB) +PASS -- TEST 'control_diag_debug_intel' [09:42, 03:12](1670 MB) +PASS -- TEST 'control_debug_p8_intel' [06:01, 03:07](1901 MB) +PASS -- TEST 'regional_debug_intel' [20:10, 18:12](927 MB) +PASS -- TEST 'rap_control_debug_intel' [08:36, 05:50](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:39, 05:32](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 05:45](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:37, 05:48](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 05:50](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:57, 05:57](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:51](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:33, 05:48](1194 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:38, 05:45](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:37, 05:47](1194 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:39, 05:37](1190 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:38, 05:43](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 09:11](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:39, 05:43](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:39, 05:42](1194 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:32, 09:37](1201 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:28] ( 848 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:20, 14:28](1693 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:52] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:21, 04:03](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:49, 03:24](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 03:20](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:24, 03:18](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:55, 03:00](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:58, 03:36](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 01:59](727 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:36, 01:53](724 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:52] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:27, 03:03](1021 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:09, 01:23](1142 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:10, 03:01](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [05:09, 01:53](691 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 07:58] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:59, 04:15](918 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 -- 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 'rap_control_debug_dyn32_phy32_intel' [09:37, 05:40](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:40, 05:35](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [27:40, 23:37](1103 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:41, 23:50](813 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:14, 13:21](1203 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:23, 24:33](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:22, 23:52](1169 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:32] ( 781 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:38, 05:44](1105 MB) + +PASS -- COMPILE 'hafsw_intel' [13:27, 09:53] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:01, 04:29](705 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [20:19, 04:44](917 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:48, 03:42](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:53](785 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 11:55](800 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:33, 13:07](817 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:06, 05:29](459 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:27, 06:37](472 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:10, 02:58](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:34, 07:56](429 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:55, 03:50](489 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:02, 03:44](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:19, 04:29](550 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:46, 01:42](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 03:50](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:01] ( 1484 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:24, 14:16](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:19] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:21, 07:09](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:28, 07:18](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 09:40] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:47, 05:30](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:29, 08:42] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:09, 06:30](761 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:10, 06:24](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:37, 16:14](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:30, 09:32] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:29, 03:13](1567 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 02:16](1567 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:56](685 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:57](687 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 03:04](687 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:07](1567 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:26, 03:16](1567 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 03:01](686 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:31, 07:20](1367 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 07:00](705 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:13](1567 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:39](4520 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 05:34](4521 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:27, 09:36] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 03:06](1565 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:21, 00:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:42, 01:10](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:35, 00:59](437 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:40, 00:46](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:32, 10:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:43, 03:59](1911 MB) + +PASS -- COMPILE 'atml_intel' [14:29, 09:23] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 03:29](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 'atml_debug_intel' [09:23, 04:26] ( 895 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:25, 05:40](1910 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 'atmw_intel' [10:24, 08:37] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:11, 02:12](1886 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 'atmaero_intel' [10:24, 08:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:58, 04:29](3240 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:37, 05:17](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:40, 05:17](3129 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_intel' [09:23, 07:52] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [21:09, 15:47](2392 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [23:47, 18:49](2454 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 -- COMPILE 'atmaq_debug_intel' [05:18, 03:36] ( 865 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:09, 40:54](1972 MB) SYNOPSIS: -Starting Date/Time: 20251015 14:29:16 -Ending Date/Time: 20251015 17:08:57 -Total Time: 02h:40m:12s +Starting Date/Time: 20251020 19:57:20 +Ending Date/Time: 20251020 22:36:26 +Total Time: 02h:39m:39s Compiles Completed: 39/39 Tests Completed: 200/200 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 49e984e0fc..da8b6f7f4b 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 +d57861830f2d2cbfedc4584bbcf9818034ff37ec Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,310 +40,310 @@ 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-20251017 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_849972 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 's2swa_32bit_intel' [10:14, 08:34] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:37, 04:00](2021 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:13, 12:43] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:08](1906 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:48, 11:08](1941 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:42, 04:55](1073 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:39, 04:58](1918 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:32, 11:46](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:13, 12:49] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:26, 10:17](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:32] ( 1557 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:49, 12:39](1927 MB) + +PASS -- COMPILE 's2swa_intel' [10:14, 08:38] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:39, 05:03](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:39, 05:05](2052 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:32, 02:41](1598 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:37, 05:06](2076 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:34, 02:45](1453 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:32, 06:01](2224 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 04:59](2055 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:30, 04:03](2004 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:39, 05:04](2052 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [09:56, 05:31](2383 MB) + +PASS -- COMPILE 's2swal_intel' [10:14, 08:27] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [06:40, 05:05](2066 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:32, 02:46](1594 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:36, 05:07](1914 MB) + +PASS -- COMPILE 's2sw_intel' [09:12, 08:07] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:25, 03:00](1931 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:30](1846 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:33] ( 1447 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:51, 08:27](2080 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:26] ( 1447 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:47, 03:49](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:12, 06:44] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:28, 03:10](1979 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:13] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:00](2050 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:19] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:02, 10:04](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:36, 05:01](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:28, 11:43](1912 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:23, 04:14](2857 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:22, 01:18](2872 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:19, 00:46](2283 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:18, 00:45](2087 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:20, 00:25](2082 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:17, 00:19](1431 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:17, 00:45](2093 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:17, 00:24](2092 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:19, 00:19](1430 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:16, 00:26](2022 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:17, 00:20](2019 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:17, 00:16](1368 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:14] ( 1557 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:38, 16:03](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:16, 02:42](523 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 01:40](1415 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:20, 01:52](1424 MB) +PASS -- TEST 'control_latlon_intel' [03:19, 01:43](1428 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 01:48](1422 MB) +PASS -- TEST 'control_c48_intel' [06:20, 04:44](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 04:28](686 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:20, 04:53](1569 MB) +PASS -- TEST 'control_c192_intel' [07:23, 04:50](1692 MB) +PASS -- TEST 'control_c384_intel' [11:33, 09:47](1975 MB) +PASS -- TEST 'control_c384gdas_intel' [14:22, 10:22](1181 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:24](479 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](282 MB) +PASS -- TEST 'control_lndp_intel' [08:17, 06:10](480 MB) +PASS -- TEST 'control_iovr4_intel' [03:17, 01:56](480 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:23, 02:04](780 MB) +PASS -- TEST 'control_iovr5_intel' [03:14, 01:44](474 MB) +PASS -- TEST 'control_p8_intel' [03:26, 01:56](1709 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:27, 02:01](1713 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:24, 03:00](1714 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:20, 02:04](1741 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:24, 01:59](1739 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:22, 01:32](2420 MB) +PASS -- TEST 'control_restart_p8_intel' [03:21, 01:08](866 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:24, 01:52](1709 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 01:08](870 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:22, 01:58](1711 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:22, 02:10](1792 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:17](1723 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:27, 02:35](1770 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:01](1726 MB) +PASS -- TEST 'merra2_thompson_intel' [04:27, 02:16](1720 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:25, 03:59](1729 MB) +PASS -- TEST 'regional_control_intel' [05:18, 03:15](857 MB) +PASS -- TEST 'regional_restart_intel' [04:19, 01:50](881 MB) +PASS -- TEST 'regional_decomp_intel' [05:18, 03:26](861 MB) +PASS -- TEST 'regional_2threads_intel' [04:17, 02:37](974 MB) +PASS -- TEST 'regional_noquilt_intel' [05:51, 03:15](1158 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 03:19](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:18](859 MB) +PASS -- TEST 'regional_wofs_intel' [06:21, 04:16](1586 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:23, 02:33](1743 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 05:46] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [05:22, 02:39](867 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:13, 02:46](1202 MB) +PASS -- TEST 'rap_decomp_intel' [04:48, 02:44](859 MB) +PASS -- TEST 'rap_2threads_intel' [04:40, 03:06](946 MB) +PASS -- TEST 'rap_restart_intel' [03:26, 01:27](730 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:44, 02:39](868 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:25, 02:57](861 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:23, 01:26](725 MB) +PASS -- TEST 'hrrr_control_intel' [05:30, 02:46](862 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 02:49](857 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:19, 03:11](940 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:23, 01:25](686 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:29, 04:53](859 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:22, 05:57](1809 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:44](1796 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:33] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:22, 04:11](817 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:14](516 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:28, 07:33](1506 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:45, 01:57](1705 MB) +PASS -- TEST 'regional_control_faster_intel' [05:18, 03:11](846 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 -- TEST 'control_CubedSphereGrid_debug_intel' [03:35, 01:34](1438 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 01:38](1448 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:07](645 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 01:55](658 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:26, 02:52](961 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 01:56](652 MB) +PASS -- TEST 'control_diag_debug_intel' [03:19, 01:54](1506 MB) +PASS -- TEST 'control_debug_p8_intel' [03:26, 01:52](1738 MB) +PASS -- TEST 'regional_debug_intel' [13:35, 11:18](893 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 03:25](1035 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:18](1028 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:21](1030 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:25](1031 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:24](1045 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:32](1117 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:30](1038 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:24](1033 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:21](1032 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:21](1039 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:20](1032 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:22](1033 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:31](1032 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:23](1032 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:22](1036 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:43](1036 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:03] ( 862 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:27, 08:37](1539 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:37] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:32, 02:33](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:29, 02:15](746 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:10](738 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:23, 02:39](788 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:35](779 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:17](735 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:14](631 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:13](617 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:37] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:37, 01:53](1017 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:23, 00:56](1023 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:23, 01:53](1022 MB) +PASS -- TEST 'conus13km_restart_intel' [03:23, 01:07](888 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:26] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 02:44](779 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:09] ( 795 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:12](911 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:12](911 MB) +PASS -- TEST 'conus13km_debug_intel' [15:28, 13:42](1062 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:23, 13:59](757 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:22, 12:37](1068 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:20, 14:17](1061 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 13:59](1129 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:08] ( 795 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:38](951 MB) + +PASS -- COMPILE 'hafsw_intel' [09:10, 08:07] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:27, 02:37](830 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:52, 03:49](1050 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:19, 02:19](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:33, 04:16](902 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:30, 07:09](939 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:32, 07:42](968 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:15](453 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:34, 03:54](469 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:35](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:11](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:22](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:28, 02:12](489 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:28, 02:40](563 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:52](407 MB) +PASS -- TEST 'gnv1_nested_intel' [14:45, 02:20](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:22] ( 1502 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:30, 07:57](558 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:41] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:31, 04:29](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:31, 04:34](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 08:01] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:51, 03:14](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:28, 03:56](882 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:29, 03:55](855 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 10:57](889 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:17, 02:04](1549 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:22](1550 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:16, 01:54](666 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:15, 01:56](670 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:16, 01:56](671 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:15, 02:04](1552 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:15, 02:05](1557 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:15, 01:50](670 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:36, 04:57](1357 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:31, 04:43](708 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:16, 02:04](1552 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [12:17, 03:47](4511 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [11:16, 03:48](4516 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:15] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:15, 04:06](1552 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:02] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:21, 02:02](1555 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' [05:23, 00:54](300 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:21, 00:37](438 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:29](430 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' [08:10, 06:08] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:42, 02:28](1789 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:10, 05:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:29, 03:12](1765 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:32, 02:28](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:24, 01:25](1023 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:10, 03:00] ( 910 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:29, 03:17](1893 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:10, 07:24] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:20](1746 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:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:29, 02:43](1924 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:35, 03:06](1574 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:26, 03:14](1595 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:10, 05:22] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [14:58, 12:47](2971 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:50, 14:22](2966 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:10, 02:08] ( 879 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:49, 25:29](2984 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:10, 05:13] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 05:59](788 MB) SYNOPSIS: -Starting Date/Time: 20251016 13:21:08 -Ending Date/Time: 20251016 14:37:35 -Total Time: 01h:16m:51s +Starting Date/Time: 20251020 11:58:58 +Ending Date/Time: 20251020 13:22:42 +Total Time: 01h:24m:12s Compiles Completed: 44/44 Tests Completed: 205/205 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 1717e833ac..1cf900791f 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 +d57861830f2d2cbfedc4584bbcf9818034ff37ec Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -14,7 +14,7 @@ Submodule hashes used in testing: c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - 88550126f2ec883d45fb9280423ce6d0991889fa UFSATM (remotes/origin/sync_NCAR_main_2025_09_04) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -26,425 +26,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: /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-20251017 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3128742 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 '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 '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 -- COMPILE 'wam_debug_gnu' [04:11, 02:08] -PASS -- TEST 'control_wam_debug_gnu' [08:39, 06:34](1401 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 '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 'atm_dyn64_phy32_gnu' [11:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:31, 05:42](827 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_dyn64_phy32_debug_gnu' [08:10, 06:50] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:40](835 MB) - -PASS -- COMPILE 's2swa_gnu' [18:10, 16:39] -PASS -- TEST 'cpld_control_p8_gnu' [13:08, 11:04](1701 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 's2swa_debug_gnu' [05:10, 03:03] -PASS -- TEST 'cpld_debug_p8_gnu' [09:02, 06:59](1687 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_debug_gnu' [04:10, 02:43] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:48, 10:58](1546 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 'atm_mpas_dyn32_gnu' [05:10, 03:29] -PASS -- TEST 'control_gfs_mpas_gnu' [02:26, 00:51](6354 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 's2swa_32bit_intel' [13:11, 11:38] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:58, 12:05](2215 MB) +PASS -- TEST 'cpld_control_gefs_intel' [30:53, 16:20](3056 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [17:41, 05:08](2735 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [27:42, 15:59](3075 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:18] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:52, 19:26](2082 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:06, 21:11](2272 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:59, 07:57](1358 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:12, 09:00](2213 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:53, 23:30](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:46] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:39, 19:42](2067 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:20] ( 1557 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:48, 21:42](1933 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:19] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:25, 12:33](2278 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:24, 11:44](2282 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:10, 08:06](1886 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:13, 12:05](2304 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:12, 06:35](1892 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:17, 10:43](2339 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:13, 11:42](2267 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:13, 11:32](2066 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:18, 11:47](2291 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:12, 14:38](2665 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:44, 09:12](2820 MB) + +PASS -- COMPILE 's2swal_intel' [14:11, 12:41] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:22, 12:36](2120 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:12, 06:16](1723 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:08, 07:20](2255 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:38] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:49, 11:19](2107 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:26](2187 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:19] ( 1447 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:52, 13:30](2292 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:04] ( 1447 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:51, 06:29](2133 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:57] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:16](2172 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:12, 12:10] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:03, 11:42](2286 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:23] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:57, 17:10](2137 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:58](1368 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:53, 21:05](1941 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:39, 08:19](3087 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:39, 02:23](3083 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:08, 01:24](2517 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:14](2259 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:43](2265 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:34, 00:35](1591 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 01:19](2255 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:42](2257 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:30, 00:35](1589 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:33, 00:44](2187 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:34](2189 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:35, 00:34](1532 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:56] ( 1557 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 27:54](1976 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:44] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:21](829 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:22](1719 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:32](1731 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:28](1730 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:34](1721 MB) +PASS -- TEST 'control_c48_intel' [09:26, 07:17](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:38](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:26, 07:26](1727 MB) +PASS -- TEST 'control_c192_intel' [09:35, 07:42](1919 MB) +PASS -- TEST 'control_c384_intel' [11:18, 08:33](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [14:10, 10:33](1396 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:42](784 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 01:04](631 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:39](787 MB) +PASS -- TEST 'control_iovr4_intel' [05:35, 02:29](788 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:31, 04:37](1076 MB) +PASS -- TEST 'control_iovr5_intel' [04:47, 02:32](781 MB) +PASS -- TEST 'control_p8_intel' [06:46, 04:15](2014 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:10](2025 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:43, 03:20](2018 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:45, 03:17](2038 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:44, 03:14](2053 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:44, 02:06](2420 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 01:46](1278 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:58](2008 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:36, 01:43](1281 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:40, 05:00](2002 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:48, 03:24](2031 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:10](2022 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 04:17](2075 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:09](2035 MB) +PASS -- TEST 'merra2_thompson_intel' [05:45, 03:33](2022 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [07:29, 05:14](2037 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:17](1225 MB) +PASS -- TEST 'regional_restart_intel' [04:32, 02:56](1240 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 05:41](1215 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 04:00](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:20](1507 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:23](1214 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:20](1223 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 06:45](2046 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:24] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:45, 04:10](2053 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:49] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [06:34, 04:21](1164 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:10](1325 MB) +PASS -- TEST 'rap_decomp_intel' [06:33, 04:24](1172 MB) +PASS -- TEST 'rap_2threads_intel' [06:32, 04:40](1185 MB) +PASS -- TEST 'rap_restart_intel' [04:36, 02:14](1184 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:33, 04:09](1180 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:33, 04:19](1167 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:35, 02:15](1172 MB) +PASS -- TEST 'hrrr_control_intel' [05:36, 03:58](1174 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:07](1165 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 04:22](1168 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:12](1143 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:36, 07:40](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:27](2119 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:59](2187 MB) + +PASS -- COMPILE 'csawmg_intel' [10:12, 08:30] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:32, 06:17](1158 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:19](871 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:37] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [13:40, 11:35](1795 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:45] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:48](2024 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:50](1225 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:22] ( 905 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:09](1748 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:18](1745 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](960 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:47](952 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:20](1271 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](968 MB) +PASS -- TEST 'control_diag_debug_intel' [04:29, 02:44](1819 MB) +PASS -- TEST 'control_debug_p8_intel' [04:39, 02:37](2049 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 17:02](1242 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:50](1343 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:50](1334 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:51](1340 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:45](1338 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:51](1342 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:13](1429 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:00](1342 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:56](1343 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:51](1342 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:48](1343 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:49](1337 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:49](1336 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 08:02](1339 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 05:02](1355 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:47](1343 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:43](1360 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:47] ( 862 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:38, 13:23](1822 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:27] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:58](1183 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:31, 03:30](1115 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:23](1106 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:31, 04:00](1034 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:49](1030 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:26, 03:37](1040 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:54](1064 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](1056 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:35] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:50, 02:58](1460 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:22](1310 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:39, 03:01](1489 MB) +PASS -- TEST 'conus13km_restart_intel' [03:39, 01:44](1334 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:40] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:33, 04:18](1130 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:48] ( 795 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1219 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1223 MB) +PASS -- TEST 'conus13km_debug_intel' [24:49, 22:28](1502 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 22:49](1190 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:43, 19:35](1332 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:44, 22:59](1516 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:42, 22:55](1573 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:47] ( 795 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:00](1285 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:02] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:44](914 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:23, 05:24](1114 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:25, 03:36](1171 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:51, 06:14](937 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:47, 28:49](965 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:36, 05:12](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:43, 06:01](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:34](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:06, 06:32](430 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:30, 03:35](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:30, 03:18](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:33, 03:47](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:05](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:54, 03:39](1869 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:25] ( 1502 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:32, 12:32](575 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 12:19] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:35, 15:08](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:37, 15:14](672 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 12:20] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 10:56](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:19] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:41, 05:53](942 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:41, 06:06](929 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:35](1314 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:08] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:00](2006 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:58](1955 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:51](1267 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:51](1264 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:49](1261 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:01](2006 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:58](2011 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:46](1259 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:11](1778 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:29, 07:02](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:06](2001 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 05:00](4966 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:57](4965 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:53] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:53](1912 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:11] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:04](2009 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:03] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:51](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:34](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:24](305 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:25] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:30](635 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:20](517 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 11:13] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:48, 03:38](2091 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:10] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:43](2107 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:59] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:19](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:33, 01:50](1129 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:03] ( 910 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:41, 04:50](1872 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:09] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:36, 01:55](2037 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 09:17] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:43, 04:17](2108 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:57](1888 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:58](1892 MB) + +PASS -- COMPILE 'atmaq_intel' [10:11, 08:39] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [18:40, 15:11](2924 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [21:29, 18:29](2925 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:16] ( 879 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:14, 39:41](2942 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:32] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:19](1180 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 03:53] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:29, 04:11](1120 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [06:11, 04:17] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:30, 04:37](1124 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:18] +PASS -- TEST 'control_c48_gnu' [11:25, 09:26](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:17, 02:52](604 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:49](611 MB) +PASS -- TEST 'control_p8_gnu' [06:41, 04:20](1552 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:43, 04:16](1550 MB) +PASS -- TEST 'control_flake_gnu' [07:22, 05:28](657 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:50] +PASS -- TEST 'rap_control_gnu' [07:31, 05:58](950 MB) +PASS -- TEST 'rap_decomp_gnu' [07:29, 06:02](950 MB) +PASS -- TEST 'rap_2threads_gnu' [08:32, 06:58](1019 MB) +PASS -- TEST 'rap_restart_gnu' [04:32, 03:02](681 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:30, 05:53](945 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:31, 06:00](944 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:31, 03:02](688 MB) +PASS -- TEST 'hrrr_control_gnu' [07:30, 05:47](952 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:47](939 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:29, 06:36](1011 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:26, 05:42](952 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 03:00](690 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:57](771 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:58](940 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:44] +PASS -- TEST 'control_csawmg_gnu' [10:29, 08:20](851 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:40] +PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:31](1381 MB) +PASS -- TEST 'regional_debug_gnu' [10:32, 08:25](884 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:34](962 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:29](965 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:32](970 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:34](972 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:47](1049 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 04:04](955 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:42](962 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:34](604 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:39](594 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:36](1547 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:37](960 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:32](963 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:23](973 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:57] +PASS -- TEST 'control_wam_debug_gnu' [08:38, 06:19](1401 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:00] +PASS -- TEST 'control_csawmg_debug_gnu' [04:30, 02:24](844 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:49] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:06](800 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 05:01](805 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:28, 06:05](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:25, 05:54](848 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:08](802 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:38](651 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:37](658 MB) +PASS -- TEST 'conus13km_control_gnu' [06:49, 04:50](1025 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:39, 02:03](1018 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:40, 04:54](1030 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:46, 02:44](730 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:51] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:43](827 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:57] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:29](806 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:24](814 MB) +PASS -- TEST 'conus13km_debug_gnu' [13:38, 11:08](1047 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:39, 10:41](771 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:34, 09:03](1030 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:34, 11:17](1049 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:35, 11:17](1111 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:57] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](833 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:51] +PASS -- TEST 'cpld_control_p8_gnu' [13:04, 10:54](1693 MB) + +PASS -- COMPILE 's2s_gnu' [17:12, 16:04] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:51, 09:56](1640 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 02:45] +PASS -- TEST 'cpld_debug_p8_gnu' [08:55, 06:59](1693 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:24] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:51, 17:41](1619 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:35] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:50, 11:02](1548 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:51] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:18, 03:30](1555 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:09] +PASS -- TEST 'control_gfs_mpas_gnu' [02:29, 00:49](6350 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 08:47] ( 1 warnings 404 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:31, 01:25](1170 MB) SYNOPSIS: -Starting Date/Time: 20251014 22:45:16 -Ending Date/Time: 20251015 00:48:24 -Total Time: 02h:03m:45s +Starting Date/Time: 20251020 15:55:59 +Ending Date/Time: 20251020 17:50:14 +Total Time: 01h:54m:55s Compiles Completed: 65/65 Tests Completed: 278/278 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 0a1ae757a2..eee0a4b6ed 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 +7251e7c3c570611c1677989c8ae6029a48f6adb3 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,420 +40,416 @@ 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-20251017 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1323183 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_32bit_intel' [14:11, 12:25] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:19, 15:46](2169 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_gefs_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [39:11, 23:03](3165 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:20] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 17:11](2031 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:42, 18:18](2345 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:31, 06:42](1350 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:49, 07:58](2217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:17, 18:15](1931 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:32] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:40, 17:54](1997 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:50] ( 1557 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:27, 18:23](1997 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:42] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:19, 09:36](2270 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:16, 28:57](2269 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:43, 04:25](1963 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:11, 08:23](2291 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 04:37](1843 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:13, 25:40](2388 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:11, 13:22](2248 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:20, 06:54](2128 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:21, 13:39](2271 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:00, 15:29](2940 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:43, 05:48](2970 MB) + +PASS -- COMPILE 's2swal_intel' [14:11, 12:12] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [11:34, 08:49](2229 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:46, 04:30](1930 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:09, 06:51](2229 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:54] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:13, 07:46](2052 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:55](2162 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:55] ( 1447 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:20, 17:32](2293 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:59] ( 1447 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:26](2084 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:13] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:47](2136 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:11, 22:32] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 08:08](2265 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:15] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 18:01](2098 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:25, 06:50](1402 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:51](1990 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [07:38, 06:05](3049 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:39, 01:54](3046 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:42, 01:04](2476 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 01:00](2246 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:34](2242 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:31](1553 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:25, 00:58](2227 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:25, 00:33](2240 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:36, 00:27](1555 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:34](2166 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:25, 00:28](2172 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:29, 00:25](1504 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:08] ( 1557 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:34, 24:02](2064 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:48] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:58](724 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:07](1613 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:10](1621 MB) +PASS -- TEST 'control_latlon_intel' [03:21, 02:06](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:14](1622 MB) +PASS -- TEST 'control_c48_intel' [08:27, 06:33](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 05:55](841 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:27, 06:41](1715 MB) +PASS -- TEST 'control_c192_intel' [08:45, 06:21](1817 MB) +PASS -- TEST 'control_c384_intel' [10:23, 07:15](2033 MB) +PASS -- TEST 'control_c384gdas_intel' [11:20, 07:44](1520 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:26](685 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:54](542 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:19](678 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 03:00](671 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:29, 02:55](978 MB) +PASS -- TEST 'control_iovr5_intel' [06:22, 04:45](679 MB) +PASS -- TEST 'control_p8_intel' [05:09, 02:35](1905 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:04](1906 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 04:02](1905 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:57, 02:30](1934 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:06, 02:33](1941 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:51, 01:45](2427 MB) +PASS -- TEST 'control_restart_p8_intel' [04:06, 01:46](1216 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:00, 03:33](1902 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:57, 01:31](1218 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:43, 02:34](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:36, 03:00](2003 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:29, 04:23](1905 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:03, 03:35](1979 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:53, 02:38](1914 MB) +PASS -- TEST 'merra2_thompson_intel' [04:54, 02:57](1926 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:49, 04:32](1919 MB) +PASS -- TEST 'regional_control_intel' [06:25, 04:31](1193 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:26](1204 MB) +PASS -- TEST 'regional_decomp_intel' [08:28, 06:36](1187 MB) +PASS -- TEST 'regional_2threads_intel' [05:22, 03:35](1098 MB) +PASS -- TEST 'regional_noquilt_intel' [06:29, 04:27](1503 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:33](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:28](1197 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 05:46](2104 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:11, 08:38] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:01, 03:28](1950 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 14:24] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [05:50, 03:35](1101 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:22](1446 MB) +PASS -- TEST 'rap_decomp_intel' [05:33, 03:46](1072 MB) +PASS -- TEST 'rap_2threads_intel' [06:33, 04:19](1161 MB) +PASS -- TEST 'rap_restart_intel' [03:53, 01:57](1100 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:34, 04:29](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:48, 03:47](1064 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:55, 02:46](1087 MB) +PASS -- TEST 'hrrr_control_intel' [05:49, 03:26](1094 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:31](1061 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 04:00](1142 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:52](1062 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:26](1198 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:22, 09:17](2022 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:20, 09:18](2188 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:51] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:31, 05:27](1070 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:52](845 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 13:17] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [11:37, 10:05](1685 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:12] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:50, 02:22](1907 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:09](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:48] ( 905 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:42](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:56](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:31](859 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:15](853 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:25](1160 MB) +PASS -- TEST 'control_ras_debug_intel' [04:17, 02:22](860 MB) +PASS -- TEST 'control_diag_debug_intel' [04:25, 02:37](1702 MB) +PASS -- TEST 'control_debug_p8_intel' [05:38, 03:22](1940 MB) +PASS -- TEST 'regional_debug_intel' [16:26, 15:03](1157 MB) +PASS -- TEST 'rap_control_debug_intel' [05:21, 04:06](1238 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:26, 07:22](1239 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:08](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:09](1240 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:15](1246 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:30, 09:17](1333 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 04:19](1248 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:21, 06:26](1249 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:10](1246 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:08](1247 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:05](1238 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:10](1249 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:20, 10:11](1246 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:21](1247 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:21](1250 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:33] ( 862 warnings 396 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 07:57] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:56, 09:48](1309 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:40, 04:15](1062 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:58, 03:55](1068 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 03:44](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:34](1053 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:56, 04:22](1004 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 02:09](999 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 02:05](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 13:45] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:33](1522 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:18](1328 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:59](1542 MB) +PASS -- TEST 'conus13km_restart_intel' [03:43, 01:29](1285 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:11, 08:04] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:50](1117 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:28] ( 795 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:57](1130 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:55](1121 MB) +PASS -- TEST 'conus13km_debug_intel' [20:40, 18:34](1557 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:38, 18:21](1166 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:32, 19:50](1374 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [20:33, 19:05](1593 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:37, 18:20](1637 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:29] ( 795 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 04:17](1230 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:16] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:14](1033 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:08, 04:54](1226 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:21, 07:25](1287 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:03, 07:24](1110 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:47, 14:45](1133 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:04, 16:45](1141 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:44, 04:30](596 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:56, 05:25](612 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 04:14](430 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 06:11](540 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 04:12](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:06](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:01](664 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 00:54](455 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:11] ( 1502 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 10:55](673 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:10, 10:30] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:43, 17:54](751 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:48, 17:48](834 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:56] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 11:30](827 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:10, 17:30] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:44, 05:05](1093 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:42, 09:34](1077 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:23](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:19] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:25](1863 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:36](1809 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:16](1120 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:17](1120 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:18](1120 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:25](1864 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:25](1874 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:14](1118 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:56, 07:11](1723 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:53, 05:36](1202 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:24](1866 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:57](4832 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:55](4831 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:48] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:26](1779 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:00] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:23](1852 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 01:12](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:49](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:30](559 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:29] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:00, 06:48](2036 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 07:59] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:54, 10:53](2062 MB) + +PASS -- COMPILE 'atml_intel' [10:10, 08:56] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:02, 05:19](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 01:54](1200 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:16] ( 910 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:55, 05:08](1910 MB) + +PASS -- COMPILE 'atmw_intel' [11:10, 09:52] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:46](1942 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:09] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:47, 04:00](2009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:40, 05:59](1793 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:42, 09:44](1824 MB) + +PASS -- COMPILE 'atmaq_intel' [09:10, 07:55] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [27:18, 24:38](2945 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [20:12, 17:11](2941 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:27] ( 879 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:58, 41:13](2957 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:10, 07:33] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:22, 09:44](1084 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 03:51] +PASS -- TEST 'control_c48_gnu' [09:29, 07:43](1587 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 02:42](589 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 03:42](593 MB) +PASS -- TEST 'control_p8_gnu' [05:57, 03:52](1539 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:40, 03:51](1555 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:12](641 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:30] +PASS -- TEST 'rap_control_gnu' [08:49, 06:40](942 MB) +PASS -- TEST 'rap_decomp_gnu' [08:51, 07:00](943 MB) +PASS -- TEST 'rap_2threads_gnu' [06:50, 04:43](1003 MB) +PASS -- TEST 'rap_restart_gnu' [04:51, 02:14](672 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:47, 05:36](938 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:48, 04:15](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:51, 02:13](678 MB) +PASS -- TEST 'hrrr_control_gnu' [05:46, 04:02](939 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:36, 04:00](922 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:31](999 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:49, 05:39](940 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:23, 03:16](672 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:26, 04:52](758 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:00, 07:58](937 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:31] +PASS -- TEST 'control_csawmg_gnu' [08:28, 06:40](839 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:44] +PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:17](1371 MB) +PASS -- TEST 'regional_debug_gnu' [08:28, 06:24](879 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:59](951 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:57](944 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 02:04](956 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:00](949 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:26, 02:06](1036 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:10](944 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 01:57](950 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:16](583 MB) +PASS -- TEST 'control_stochy_debug_gnu' [05:18, 03:19](578 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:37, 02:22](1532 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:46](949 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:07](955 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:52, 03:27](954 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:40] +PASS -- TEST 'control_wam_debug_gnu' [07:38, 05:09](1391 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:02] +PASS -- TEST 'control_csawmg_debug_gnu' [04:28, 02:56](824 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:40] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 06:21](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [10:57, 09:04](796 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:49, 03:45](842 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:53, 03:52](836 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:31](792 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [05:53, 03:25](647 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:30](644 MB) +PASS -- TEST 'conus13km_control_gnu' [05:56, 03:56](1033 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:43, 01:51](1020 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:39, 03:59](1038 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:16](766 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:14] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:26](820 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 05:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:19, 02:05](803 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 01:57](798 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:38, 08:51](1052 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [20:37, 19:01](779 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [18:36, 16:33](1035 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [10:30, 09:08](1056 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [14:30, 12:40](1118 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:08](830 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 17:03] +PASS -- TEST 'cpld_control_p8_gnu' [13:27, 10:45](1722 MB) + +PASS -- COMPILE 's2s_gnu' [19:11, 17:49] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:07, 08:36](1637 MB) PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:16] -PASS -- TEST 'cpld_debug_p8_gnu' [09:06, 06:36](1733 MB) +PASS -- TEST 'cpld_debug_p8_gnu' [09:03, 06:27](1742 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_gnu' [19:10, 17:13] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [29:57, 27:40](1601 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 's2sw_pdlib_debug_gnu' [03:10, 02:06] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:57, 09:46](1605 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 'datm_cdeps_gnu' [18:10, 16:54] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 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 'atm_mpas_dyn32_gnu' [04:10, 02:51] +PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:35](6401 MB) SYNOPSIS: -Starting Date/Time: 20251014 16:52:43 -Ending Date/Time: 20251014 19:54:15 -Total Time: 03h:02m:37s +Starting Date/Time: 20251020 09:05:47 +Ending Date/Time: 20251020 11:02:42 +Total Time: 01h:58m:15s Compiles Completed: 61/61 -Tests Completed: 267/271 +Tests Completed: 269/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 +* TEST cpld_control_gefs_intel: FAILED: TEST TIMED OUT +-- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1323183/cpld_control_gefs_intel/err +* TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST -- LOG: N/A NOTES: @@ -467,10 +463,10 @@ Result: FAILURE ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -b94271cbbca08d5e8d5b7283b048369f0b5b1f84 +d897bb57e6fa3d94a101b637faa7be2d00f2c478 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -485,9 +481,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -506,26 +502,24 @@ 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 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251017 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2636503 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) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:36] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [44:46, 28:24](3130 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [29:28, 09:13](2822 MB) SYNOPSIS: -Starting Date/Time: 20251014 19:59:56 -Ending Date/Time: 20251014 22:24:17 -Total Time: 02h:24m:41s +Starting Date/Time: 20251020 12:35:33 +Ending Date/Time: 20251020 14:04:24 +Total Time: 01h:29m:13s Compiles Completed: 1/1 -Tests Completed: 4/4 +Tests Completed: 2/2 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..6f5677db73 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 +7251e7c3c570611c1677989c8ae6029a48f6adb3 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,320 +40,320 @@ 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-20251017 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_294579 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 -- COMPILE 's2swa_32bit_intel' [18:18, 16:28] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:02, 16:44](2109 MB) +PASS -- TEST 'cpld_control_gefs_intel' [38:01, 20:24](3067 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [26:35, 07:14](2737 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [41:25, 21:36](3081 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:19, 24:35] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:21, 19:41](1971 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:18, 21:33](2144 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:34, 08:10](1234 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:37, 10:14](2093 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:23, 24:06](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:19, 24:37] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:00, 20:18](1957 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:18, 06:28] ( 1557 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:23, 22:58](1950 MB) + +PASS -- COMPILE 's2swa_intel' [17:18, 15:34] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:37, 17:44](2189 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:00, 16:51](2197 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:25, 08:09](1781 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:04, 16:36](2217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:02, 09:38](1767 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 13:04](2303 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:04, 16:23](2173 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:03, 14:31](2059 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:38](2194 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:26, 16:25](2670 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:59, 10:14](2828 MB) + +PASS -- COMPILE 's2swal_intel' [18:18, 16:46] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [21:05, 17:39](2137 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:29, 09:06](1753 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:42, 08:51](2158 MB) + +PASS -- COMPILE 's2sw_intel' [16:18, 14:43] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:41, 16:16](2007 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 07:08](2089 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:18, 06:29] ( 1447 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:47, 14:33](2215 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:18, 06:06] ( 1447 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:29, 07:54](2033 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:18, 13:12] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:34](2078 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:03] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:08, 17:39](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 22:27] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:47, 17:39](2032 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:22, 08:11](1241 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:50, 20:43](1943 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:08, 08:15](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:09, 02:34](3041 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:16, 01:29](2471 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:43, 01:28](2233 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:49](2233 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:45, 00:38](1549 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:35, 01:24](2227 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:35, 00:48](2244 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:46, 01:29](1554 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:34, 00:50](2166 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:47, 00:40](2159 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:49, 00:32](1506 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:28] ( 1557 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:49, 28:46](2009 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:03] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:47](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:38](1594 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:50](1606 MB) +PASS -- TEST 'control_latlon_intel' [04:25, 02:46](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:49](1595 MB) +PASS -- TEST 'control_c48_intel' [10:37, 09:09](1714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:17](846 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:37, 09:21](1713 MB) +PASS -- TEST 'control_c192_intel' [10:55, 08:16](1798 MB) +PASS -- TEST 'control_c384_intel' [12:52, 09:51](1989 MB) +PASS -- TEST 'control_c384gdas_intel' [15:54, 10:42](1336 MB) +PASS -- TEST 'control_stochy_intel' [03:30, 01:48](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:07](488 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:43](657 MB) +PASS -- TEST 'control_iovr4_intel' [04:31, 02:46](657 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:49, 03:15](948 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:44](657 MB) +PASS -- TEST 'control_p8_intel' [06:47, 03:12](1874 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:36, 04:26](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 04:00](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:40, 04:19](1911 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:59, 04:29](1918 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:21, 02:12](2409 MB) +PASS -- TEST 'control_restart_p8_intel' [05:15, 02:03](1135 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:09](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:53](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:43, 03:12](1882 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:18, 03:44](1973 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:31](1895 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:29, 04:49](1942 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:21](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [06:53, 03:45](1895 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:41, 05:25](1898 MB) +PASS -- TEST 'regional_control_intel' [08:44, 06:22](1083 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 03:24](1104 MB) +PASS -- TEST 'regional_decomp_intel' [08:50, 06:42](1064 MB) +PASS -- TEST 'regional_2threads_intel' [06:52, 04:26](1037 MB) +PASS -- TEST 'regional_noquilt_intel' [08:57, 06:21](1372 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:21](1086 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:41, 06:21](1084 MB) +PASS -- TEST 'regional_wofs_intel' [09:47, 07:50](1907 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:21] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:36, 04:49](1916 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:30] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [07:39, 04:32](1041 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:07](1353 MB) +PASS -- TEST 'rap_decomp_intel' [07:08, 04:40](1034 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 05:18](1118 MB) +PASS -- TEST 'rap_restart_intel' [05:45, 02:29](1007 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:25, 04:29](1044 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:25, 04:38](1031 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 02:27](1006 MB) +PASS -- TEST 'hrrr_control_intel' [07:17, 04:20](1036 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:25](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:14, 04:59](1108 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:45, 02:24](971 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:35, 08:13](1040 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:45](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:21](2013 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 11:52] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:45, 06:25](1045 MB) +PASS -- TEST 'control_ras_intel' [05:28, 03:30](741 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 11:51] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [14:59, 12:55](1679 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:02] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:39, 03:09](1883 MB) +PASS -- TEST 'regional_control_faster_intel' [07:47, 06:05](1089 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:44] ( 905 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:16](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:30, 02:19](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:01](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:46](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:22](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:45](838 MB) +PASS -- TEST 'control_diag_debug_intel' [04:38, 02:47](1691 MB) +PASS -- TEST 'control_debug_p8_intel' [06:57, 04:10](1910 MB) +PASS -- TEST 'regional_debug_intel' [19:46, 18:04](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:55](1225 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:54](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:56](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:58](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:50, 05:13](1315 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:57](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:01](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:32, 04:58](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:30, 04:53](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:53](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:59](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:57](1208 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 04:54](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:12](1215 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:42] ( 862 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:59, 13:33](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:01] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 04:50](1230 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:22, 03:55](940 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:47](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 04:35](987 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:08, 04:26](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 03:54](909 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 02:10](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:07](875 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:00] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:16, 03:46](1328 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:32](1232 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:57, 03:48](1355 MB) +PASS -- TEST 'conus13km_restart_intel' [04:59, 02:11](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:12] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:54, 04:33](1010 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:32] ( 795 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 04:54](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:39](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [24:50, 22:23](1360 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:48, 22:17](1063 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:46, 21:38](1264 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:45, 22:58](1399 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:50, 22:51](1439 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:36] ( 795 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:53](1185 MB) + +PASS -- COMPILE 'hafsw_intel' [16:10, 14:26] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:54, 04:37](908 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:34, 05:52](1099 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:34, 04:27](1220 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:05, 06:21](971 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:08, 29:12](996 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:29, 33:53](1026 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 06:32](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 07:27](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 08:07](417 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:21](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:57, 04:09](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 05:06](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:24](395 MB) +PASS -- TEST 'gnv1_nested_intel' [06:55, 03:54](1736 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:34] ( 1502 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:18](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:41] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:56, 15:06](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:03, 15:09](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 13:41] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:13, 11:08](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:13] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:07, 06:36](968 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:06, 06:37](954 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_intel' [09:10, 07:47] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1875 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:25](1814 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 03:06](1122 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:08](1126 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 03:09](1124 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:30](1873 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:30](1866 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:07](1136 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:34, 07:38](1657 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:48, 07:13](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:29](1867 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 06:07](4831 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:56](4836 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_debug_intel' [05:10, 03:29] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 07:02](1779 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_faster_intel' [11:10, 09:23] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:31](1870 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_land_intel' [03:10, 01:16] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:22](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:50](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 00:33](315 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 'datm_cdeps_lm4_intel' [03:10, 01:34] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:40](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:23](455 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_pcice_intel' [14:11, 12:53] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:29, 04:58](1989 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 'atm_ds2s_docn_dice_intel' [14:11, 12:40] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:19, 05:44](1985 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_intel' [14:11, 13:07] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:34, 04:03](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:28](1090 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 'atml_debug_intel' [07:10, 05:48] ( 910 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:34, 06:32](1890 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 'atmw_intel' [14:10, 13:00] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:07](1916 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 'atmaero_intel' [14:11, 12:45] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:17, 05:12](1979 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:09, 05:28](1770 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 05:27](1788 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_intel' [13:11, 12:03] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:07, 18:55](2915 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [26:13, 22:24](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 'atmaq_debug_intel' [06:11, 04:53] ( 879 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:14, 40:00](2934 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 'atm_fbh_intel' [13:11, 11:20] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 13:28](1086 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 'hafsw_intelllvm' [14:11, 12:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [07:21, 05:07](573 MB) SYNOPSIS: -Starting Date/Time: 20251014 16:51:04 -Ending Date/Time: 20251014 19:04:21 -Total Time: 02h:14m:15s +Starting Date/Time: 20251020 09:05:50 +Ending Date/Time: 20251020 11:15:10 +Total Time: 02h:11m:07s Compiles Completed: 46/46 Tests Completed: 211/211 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index ae578563c3..a12f8227d8 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 +d57861830f2d2cbfedc4584bbcf9818034ff37ec Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,440 +40,440 @@ 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-20251017 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134319 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 '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 -- COMPILE 's2swa_32bit_intel' [10:10, 08:48] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:52, 06:41](2193 MB) +PASS -- TEST 'cpld_control_gefs_intel' [38:16, 25:14](3252 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [17:21, 06:01](2953 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [48:43, 33:03](3443 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:10, 12:37] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 11:45](2063 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:52, 13:23](2642 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:52, 05:16](1512 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:57, 06:11](2365 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:41, 20:30](2001 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:10, 13:03] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:33, 13:09](1997 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:34] ( 1557 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:41, 13:14](2093 MB) + +PASS -- COMPILE 's2swa_intel' [10:10, 08:53] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:55, 07:26](2468 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:57, 06:55](2521 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:52, 04:01](2266 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:51, 06:51](2374 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:52, 03:52](1991 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:54, 15:28](2994 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:55, 07:09](2436 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:03, 11:46](2308 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:02](2474 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:37, 19:20](3604 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:38, 12:18](3498 MB) + +PASS -- COMPILE 's2swal_intel' [10:10, 08:48] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:57, 07:31](2498 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:55, 03:49](2314 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:28](3093 MB) + +PASS -- COMPILE 's2sw_intel' [10:10, 08:27] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 06:36](2075 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:52, 04:54](2986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:28] ( 1447 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:51, 09:14](2377 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:16] ( 1447 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 04:33](2106 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:32] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:51, 03:31](2165 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:26] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:53, 06:43](2472 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:17] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:46, 11:04](2156 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 05:27](1640 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:51, 15:31](2102 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:32, 08:22](3035 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:32, 01:28](3021 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:29, 00:53](2470 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:52](2215 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:31](2211 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:25, 01:47](1534 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:27, 00:51](2210 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:31](2208 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:26](1531 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2138 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:29](2138 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1489 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:13] ( 1557 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:53, 19:10](2181 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:27] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:16, 02:32](1346 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 01:38](2211 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 01:46](2228 MB) +PASS -- TEST 'control_latlon_intel' [04:17, 01:42](2224 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 01:43](2212 MB) +PASS -- TEST 'control_c48_intel' [07:18, 04:52](1669 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:34](806 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:17, 04:59](1671 MB) +PASS -- TEST 'control_c192_intel' [06:31, 05:08](1811 MB) +PASS -- TEST 'control_c384_intel' [09:07, 05:50](2088 MB) +PASS -- TEST 'control_c384gdas_intel' [10:25, 06:16](1954 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:13](1307 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:42](1199 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:10](1318 MB) +PASS -- TEST 'control_iovr4_intel' [03:16, 01:44](1293 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:26, 02:24](1596 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:51](1305 MB) +PASS -- TEST 'control_p8_intel' [03:36, 02:09](2519 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:29](2536 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:07](2534 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:37, 02:06](2545 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:34, 02:13](2540 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:36, 10:25](2415 MB) +PASS -- TEST 'control_restart_p8_intel' [03:31, 01:26](1851 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:08](2509 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:20](1867 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:31, 02:15](2516 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:34, 01:47](2024 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:34](2534 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:35, 02:50](2592 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:14](2533 MB) +PASS -- TEST 'merra2_thompson_intel' [04:35, 02:41](2527 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:46](2542 MB) +PASS -- TEST 'regional_control_intel' [05:48, 03:35](1720 MB) +PASS -- TEST 'regional_restart_intel' [04:28, 02:17](1713 MB) +PASS -- TEST 'regional_decomp_intel' [05:28, 03:46](1724 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 02:16](1565 MB) +PASS -- TEST 'regional_noquilt_intel' [05:27, 03:35](1995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:35](1727 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:35](1725 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 04:29](2665 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:14] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:53](2557 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 05:46] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [04:27, 03:06](1792 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 02:52](1633 MB) +PASS -- TEST 'rap_decomp_intel' [04:23, 02:52](1753 MB) +PASS -- TEST 'rap_2threads_intel' [04:24, 02:21](1181 MB) +PASS -- TEST 'rap_restart_intel' [03:29, 01:34](1762 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:28, 03:00](1790 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:23, 02:50](1734 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:38, 01:29](1761 MB) +PASS -- TEST 'hrrr_control_intel' [04:32, 02:40](1757 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 02:48](1730 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 02:10](1176 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:28](1706 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:55](1933 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:32](2667 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:38, 06:17](2892 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:21] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:40, 04:51](1770 MB) +PASS -- TEST 'control_ras_intel' [03:28, 02:19](1585 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:15] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [10:37, 08:19](2411 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:35] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:35, 02:11](2512 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 03:26](1723 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 03:46] ( 905 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:50](2242 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:52](2263 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:17, 05:50](1502 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:15](1481 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:52, 03:14](1790 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:02](1496 MB) +PASS -- TEST 'control_diag_debug_intel' [03:33, 02:04](2319 MB) +PASS -- TEST 'control_debug_p8_intel' [03:30, 02:03](2542 MB) +PASS -- TEST 'regional_debug_intel' [14:30, 12:09](1638 MB) +PASS -- TEST 'rap_control_debug_intel' [05:29, 03:34](1881 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:25, 03:37](1881 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 03:38](1875 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:33](1877 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1870 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:24, 03:42](1963 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:58](1876 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:29, 03:39](1868 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 03:54](1871 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 03:39](1870 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:33](1867 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:35](1867 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:42](1883 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:27, 03:33](1878 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:37](1869 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:29, 06:08](1876 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:18] ( 862 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:40, 08:58](2293 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:27] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 02:46](1489 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:25, 02:47](1750 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:18](1714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:22, 01:56](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 01:55](1053 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:45, 02:23](1640 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:19](1660 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](1642 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:27] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:47, 02:09](1780 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:56](1789 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:43, 02:00](1810 MB) +PASS -- TEST 'conus13km_restart_intel' [07:40, 05:22](1581 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:43] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:56](1826 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:12] ( 795 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:28](1748 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:23](1745 MB) +PASS -- TEST 'conus13km_debug_intel' [18:44, 16:27](1843 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:02, 14:48](1458 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:20](1835 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:34, 14:44](1861 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:34, 15:19](1914 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:11] ( 795 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:28](1857 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:35] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:37, 02:38](1202 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:55, 04:03](1396 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:30, 02:29](1474 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:43, 04:18](1314 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [35:39, 32:08](1380 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:46, 23:26](1386 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:36, 03:15](795 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:35, 03:58](806 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:33, 01:34](538 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:22](603 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:21](752 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:33, 02:06](767 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:32, 02:37](803 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:46](514 MB) +PASS -- TEST 'gnv1_nested_intel' [04:48, 02:29](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:35] ( 1502 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:30, 08:06](720 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:33] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:39, 26:35](875 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:01, 27:00](1092 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:52] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 18:29](1097 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:48] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:53, 04:05](1286 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:38, 04:10](1283 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:44, 11:42](1808 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:44] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:45](1951 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:17](1883 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:12](1198 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:56](1212 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:46](1193 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:15, 11:05](1944 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:57](1942 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:00](1192 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:02, 05:32](1827 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 05:28](1360 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:55](1948 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:16, 13:32](4788 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:07](4789 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:19] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:14](1840 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:23] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:56](1942 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](363 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:39](619 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:24](622 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:09] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:42, 02:39](2836 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:54] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:37, 03:26](2864 MB) + +PASS -- COMPILE 'atml_intel' [08:15, 06:26] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:37, 02:30](1924 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 01:26](1307 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:14, 03:30] ( 910 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:37, 03:32](1961 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 07:37] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:50](2697 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:41, 03:09](2020 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:32, 03:15](2395 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 03:20](2413 MB) + +PASS -- COMPILE 'atmaq_intel' [07:10, 05:29] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:29, 11:15](2877 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:13, 12:57](2877 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:30] ( 879 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:13, 26:45](2889 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:28] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:22, 06:34](1137 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:30] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:46, 11:45](2060 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [04:10, 02:57] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:45, 13:20](2087 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:11, 13:04] +PASS -- TEST 'cpld_control_sfs_intelllvm' [14:36, 12:39](1997 MB) + +PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:38] +PASS -- TEST 'cpld_control_p8_intelllvm' [10:00, 07:28](2515 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:15] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:25, 02:22](1718 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:21, 05:28] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:28, 02:54](1809 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:25, 07:39] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [06:36, 02:35](819 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [04:12, 02:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [11:28, 08:13](731 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:10] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:19, 01:52](1941 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:21] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:15, 04:42](1849 MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 03:01] +PASS -- TEST 'control_c48_gnu' [07:18, 05:47](1512 MB) +PASS -- TEST 'control_stochy_gnu' [03:16, 01:59](515 MB) +PASS -- TEST 'control_ras_gnu' [04:17, 03:06](520 MB) +PASS -- TEST 'control_p8_gnu' [04:40, 03:07](1443 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 02:59](1488 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:11](562 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:12, 02:52] +PASS -- TEST 'rap_control_gnu' [05:25, 03:26](852 MB) +PASS -- TEST 'rap_decomp_gnu' [05:25, 03:26](854 MB) +PASS -- TEST 'rap_2threads_gnu' [04:27, 02:39](911 MB) +PASS -- TEST 'rap_restart_gnu' [03:29, 01:53](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:27, 03:29](854 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:24, 03:26](854 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:29, 01:56](580 MB) +PASS -- TEST 'hrrr_control_gnu' [05:29, 03:20](855 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:23, 03:17](840 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:23, 02:33](900 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:23, 03:22](857 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 01:48](580 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 01:46](669 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:32, 06:10](850 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 02:40] +PASS -- TEST 'control_csawmg_gnu' [07:31, 05:44](757 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:13, 05:32] +PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:52](1287 MB) +PASS -- TEST 'regional_debug_gnu' [07:29, 05:37](765 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:50](861 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:47](861 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:48](867 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:49](867 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:12](948 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 02:48](860 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 01:56](861 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 'control_stochy_debug_gnu' [03:16, 01:13](498 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:21](1449 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:50](862 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:02](862 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 02:58](872 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:22, 01:30] +PASS -- TEST 'control_wam_debug_gnu' [06:32, 04:34](1310 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:46] +PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:49](741 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:52] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:22, 03:22](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:24, 03:13](712 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:27, 02:35](740 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 02:27](733 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 03:09](714 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:25, 01:46](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:39](558 MB) +PASS -- TEST 'conus13km_control_gnu' [04:49, 03:01](905 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:56, 01:12](907 MB) +PASS -- TEST 'conus13km_decomp_gnu' [20:52, 18:40](909 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:36, 01:44](587 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:22, 06:23] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 03:38](736 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 05:14] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:47](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 01:44](721 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:40, 07:15](923 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:39, 07:14](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:35, 04:06](923 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:35, 07:22](925 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:35, 07:16](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:36] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:52](744 MB) + +PASS -- COMPILE 's2swa_gnu' [14:11, 12:46] +PASS -- TEST 'cpld_control_p8_gnu' [09:58, 07:39](1603 MB) + +PASS -- COMPILE 's2s_gnu' [12:11, 11:00] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:49](1547 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:16] +PASS -- TEST 'cpld_debug_p8_gnu' [06:50, 04:42](1612 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:14, 12:14] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:40, 09:06](1575 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:50] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:40, 06:37](1588 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [11:11, 10:00] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [14:15, 12:45](1511 MB) SYNOPSIS: -Starting Date/Time: 20251014 22:50:30 -Ending Date/Time: 20251015 00:34:25 -Total Time: 01h:44m:39s +Starting Date/Time: 20251020 15:58:01 +Ending Date/Time: 20251020 17:50:50 +Total Time: 01h:53m:24s Compiles Completed: 70/70 Tests Completed: 283/283 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 12e3407b1d..18d0d42153 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 +d897bb57e6fa3d94a101b637faa7be2d00f2c478 Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) 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) @@ -19,9 +19,9 @@ Submodule hashes used in testing: 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) + e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 886a74402c97928fc4308b8438f33f6cd3b97321 UFSATM/ccpp/physics (EP4-2007-g886a7440) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,264 +40,264 @@ 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-20251017 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1771272 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 's2swa_32bit_intel' [13:29, 11:33] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:39, 06:50](3350 MB) +PASS -- TEST 'cpld_control_gefs_intel' [34:32, 16:49](4116 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [30:45, 12:11](3920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:34, 13:00] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 15:13](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:32, 16:33](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:37, 07:41](1070 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:57, 09:17](1928 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:23, 17:46](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:34, 12:52] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 15:50](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 04:58] ( 1537 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:38, 20:28](1943 MB) + +PASS -- COMPILE 's2swa_intel' [13:29, 11:35] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:12, 08:39](3379 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:36, 08:30](3379 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:29, 05:02](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:03, 08:23](3406 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:39, 05:05](3293 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:21, 07:53](3621 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:56, 08:21](3371 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:21, 07:22](3330 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:35, 08:24](3379 MB) + +PASS -- COMPILE 's2swal_intel' [14:34, 12:21] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:31, 08:29](3343 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 11:09] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:45, 05:15](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:14, 07:33](1969 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:30](1980 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:34, 16:17] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:25](3382 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 12:09] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 15:29](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:15, 07:46](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:07, 17:56](1895 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:47, 06:36](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:41, 02:38](2898 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:18, 01:50](2313 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:05, 01:46](2113 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:06, 01:22](2116 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:55, 01:14](1490 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:06, 01:47](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:05, 01:22](2111 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:54, 01:04](1488 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:05, 01:19](2040 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:05, 01:12](2041 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:56, 01:04](1397 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:39] ( 1537 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 23:55](1964 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 -- TEST 'control_flake_intel' [06:48, 04:01](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:43, 02:48](1579 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:53](1589 MB) +PASS -- TEST 'control_latlon_intel' [05:38, 02:49](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:41, 02:47](1589 MB) +PASS -- TEST 'control_c48_intel' [08:55, 06:51](1598 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:58, 06:10](723 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:56, 06:56](1601 MB) +PASS -- TEST 'control_c192_intel' [10:04, 07:27](1715 MB) +PASS -- TEST 'control_c384_intel' [12:40, 08:48](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [16:07, 09:16](1185 MB) +PASS -- TEST 'control_stochy_intel' [04:36, 02:08](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:49, 01:27](407 MB) +PASS -- TEST 'control_lndp_intel' [03:45, 01:47](647 MB) +PASS -- TEST 'control_iovr4_intel' [05:41, 02:49](634 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:13, 03:32](917 MB) +PASS -- TEST 'control_iovr5_intel' [05:39, 02:55](636 MB) +PASS -- TEST 'control_p8_intel' [07:39, 03:22](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:26](1865 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:12](1868 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:21, 03:28](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:41, 03:45](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:50, 02:52](2440 MB) +PASS -- TEST 'control_restart_p8_intel' [06:17, 02:13](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:41, 03:30](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:08](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:39, 03:31](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:09](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:21](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:10, 04:20](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:02, 03:43](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [08:49, 03:58](1871 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [09:36, 05:52](1877 MB) +PASS -- TEST 'regional_control_intel' [08:04, 05:19](873 MB) +PASS -- TEST 'regional_restart_intel' [06:06, 03:14](881 MB) +PASS -- TEST 'regional_decomp_intel' [08:03, 05:41](874 MB) +PASS -- TEST 'regional_2threads_intel' [05:54, 03:26](993 MB) +PASS -- TEST 'regional_noquilt_intel' [07:57, 05:19](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:22](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:52, 05:37](872 MB) +PASS -- TEST 'regional_wofs_intel' [09:05, 07:01](1610 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:26, 09:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:25, 04:24](1889 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:39] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:00, 04:08](1020 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 04:31](1201 MB) +PASS -- TEST 'rap_decomp_intel' [07:36, 04:28](1015 MB) +PASS -- TEST 'rap_2threads_intel' [07:39, 03:59](1095 MB) +PASS -- TEST 'rap_restart_intel' [06:38, 02:33](768 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:51, 04:16](1019 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:44, 04:30](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 02:35](773 MB) +PASS -- TEST 'hrrr_control_intel' [07:39, 04:06](1008 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 04:15](1014 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:17, 03:37](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](764 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:23, 07:20](1010 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:57, 09:35](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:53, 09:15](1971 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:52] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:22, 07:07](960 MB) +PASS -- TEST 'control_ras_intel' [05:38, 03:39](672 MB) + +PASS -- COMPILE 'wam_intel' [09:25, 07:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:17, 12:31](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:07] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:51, 03:17](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [08:11, 05:20](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:20, 04:49] ( 890 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:51](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:50](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:44](828 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:19](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:10, 05:14](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [05:36, 03:32](833 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:14](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [06:07, 03:28](1908 MB) +PASS -- TEST 'regional_debug_intel' [21:51, 19:09](933 MB) +PASS -- TEST 'rap_control_debug_intel' [08:49, 05:58](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:50, 05:37](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:40, 05:43](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:40, 05:47](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:49](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:56, 06:10](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:42, 05:56](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:55](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:45, 05:47](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:44, 05:49](1199 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:39, 05:35](1202 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:46, 05:49](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 08:57](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:47, 05:38](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:41, 05:45](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:12, 09:43](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:33] ( 848 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:23, 14:24](1709 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:49] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 04:07](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:26, 03:39](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:04, 03:25](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 03:11](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:24, 03:06](933 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:06, 03:33](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:36, 02:32](733 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:25, 02:25](727 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:53] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:19, 03:04](1022 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:41, 01:39](1138 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:03, 03:04](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [06:32, 02:13](687 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 08:01] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 04:18](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:33] ( 781 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:48, 07:23](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:05, 05:34](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [27:12, 24:08](1098 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:54, 24:16](809 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:38, 13:53](1204 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [27:45, 24:38](1104 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:40, 23:59](1171 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:32] ( 781 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:44, 06:33](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:48] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:20](708 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:21, 07:45](923 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:55, 05:56](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:55, 08:40](767 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:25](922 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:48, 14:58](946 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:21, 08:06](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:21, 10:30](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:03, 04:34](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:46, 10:42](427 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:05, 04:47](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:59, 04:05](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:27, 06:13](552 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:48, 02:02](413 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:24, 04:05] ( 1484 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:56, 16:01](660 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:23] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:13, 08:53](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 08:30](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:28] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:49, 07:40](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 08:49] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:21, 08:02](763 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 08:15](785 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:44, 17:22](899 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:27, 10:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:47, 04:42](1912 MB) + +PASS -- COMPILE 'atml_intel' [11:30, 09:28] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:20, 04:37] ( 895 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:25, 08:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:26, 05:53](3238 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 05:32](3208 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:48, 05:22](3217 MB) + +PASS -- COMPILE 'atmaq_intel' [09:28, 07:49] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [22:45, 16:15](2389 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [25:54, 19:37](2437 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:42] ( 865 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:32, 40:46](1956 MB) SYNOPSIS: -Starting Date/Time: 20251015 14:30:30 -Ending Date/Time: 20251015 16:45:25 -Total Time: 02h:16m:33s +Starting Date/Time: 20251020 20:01:09 +Ending Date/Time: 20251020 21:54:49 +Total Time: 01h:54m:55s Compiles Completed: 35/35 Tests Completed: 177/177 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/test_changes.list b/tests/test_changes.list index e69de29bb2..9fa7012059 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,3 @@ +regional_atmaq intel +regional_atmaq_canopy intel +regional_atmaq_debug intel From d263b4dd0531587dd0ff604c8644c09e144e854d Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 21 Oct 2025 22:06:59 -0400 Subject: [PATCH 39/48] update input data categories --- .github/workflows/update_project_labels.yaml | 37 ++++++++++++++++---- 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 22776cc52c..cd258e0425 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -72,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: New input data required + if: | + contains(github.event.pull_request.labels.*.name, 'New Input Data') && + !contains(github.event.pull_request.labels.*.name, 'Updated 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: 'New' + - name: Updated input data required + if: | + contains(github.event.pull_request.labels.*.name, 'Updated Input Data') && + !contains(github.event.pull_request.labels.*.name, 'New 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: 'Updated' - name: No input data changes - if: (!contains(github.event.pull_request.labels.*.name, 'Input Data Changes')) + if: | + (!contains(github.event.pull_request.labels.*.name, 'Updated Input Data')) && + (!contains(github.event.pull_request.labels.*.name, 'New 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, 'Updated Input Data') && + contains(github.event.pull_request.labels.*.name, 'New 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 @@ -112,7 +138,6 @@ jobs: id: assign_priority run: | PRIORITY="${{ steps.priority_field.outputs.values }}" - echo $PRIORITY echo "priority=$PRIORITY" >> $GITHUB_OUTPUT - name: Normal Priority if: | From d46b4c436f584d52647cac8d82f190d5cb1b1c56 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Wed, 22 Oct 2025 10:38:41 -0400 Subject: [PATCH 40/48] draft automation of subcomponent PR field --- .github/workflows/update_project_labels.yaml | 72 ++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index cd258e0425..6480ff7ffb 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -184,3 +184,75 @@ 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' \ No newline at end of file From 74d51021f7d0b5620417d4de41ef62d08f40dcf7 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Wed, 22 Oct 2025 10:59:41 -0400 Subject: [PATCH 41/48] add blank space at end of YAML --- .github/workflows/update_project_labels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 6480ff7ffb..790245b05e 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -255,4 +255,4 @@ jobs: project-url: https://github.com/orgs/NOAA-EPIC/projects/18 github-token: ${{ secrets.PR_PROJECT_TOKEN }} field-name: "Subcomponent PRs" - field-value: 'WM only' \ No newline at end of file + field-value: 'WM only' From a055464fafb4316f91b311c7b281dc883486861d Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Wed, 22 Oct 2025 11:05:34 -0400 Subject: [PATCH 42/48] text syntax fix --- .github/workflows/update_project_labels.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 790245b05e..63f83509d1 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -196,13 +196,19 @@ jobs: steps: - name: UFSATM if: contains(github.event.pull_request.labels.*.name, 'UFSATM') - run: echo "SUBCOMPONENTS="${SUBCOMPONENTS} UFSATM" >> $GITHUB_ENV + run: | + echo "SUBCOMPONENTS=${SUBCOMPONENTS} UFSATM" >> $GITHUB_ENV + echo $SUBCOMPONENTS - name: CCPP if: contains(github.event.pull_request.labels.*.name, 'CCPP') - run: echo "SUBCOMPONENTS="${SUBCOMPONENTS} CCPP" >> $GITHUB_ENV + run: | + echo "SUBCOMPONENTS=${SUBCOMPONENTS} CCPP" >> $GITHUB_ENV + echo $SUBCOMPONENTS - name: atmos_cubed_sphere if: contains(github.event.pull_request.labels.*.name, 'A3S') - run: echo "SUBCOMPONENTS="${SUBCOMPONENTS} A3S" >> $GITHUB_ENV + run: | + echo "SUBCOMPONENTS=${SUBCOMPONENTS} A3S" >> $GITHUB_ENV + echo $SUBCOMPONENTS - name: UPP if: contains(github.event.pull_request.labels.*.name, 'UPP') run: echo "SUBCOMPONENTS="${SUBCOMPONENTS} UPP" >> $GITHUB_ENV From 28335588c00eafa51dfd4269e8b7fb1c698bd80a Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Wed, 22 Oct 2025 11:20:05 -0400 Subject: [PATCH 43/48] text syntax fix --- .github/workflows/update_project_labels.yaml | 40 ++++++++------------ 1 file changed, 16 insertions(+), 24 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 63f83509d1..2a8df5f354 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -196,55 +196,48 @@ jobs: steps: - name: UFSATM if: contains(github.event.pull_request.labels.*.name, 'UFSATM') - run: | - echo "SUBCOMPONENTS=${SUBCOMPONENTS} UFSATM" >> $GITHUB_ENV - echo $SUBCOMPONENTS + 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 - echo $SUBCOMPONENTS + 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 - echo $SUBCOMPONENTS + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + run: echo "SUBCOMPONENTS=${SUBCOMPONENTS} LM4" >> $GITHUB_ENV - name: Update subcomponents text - if: - ${{ env.SUBCOMPONENTS != '' }} #Fix to use non-env var solution + 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 @@ -253,8 +246,7 @@ jobs: field-name: "Subcomponent PRs" field-value: ${{ env.SUBCOMPONENTS }} - name: WM only - if: - ${{ env.SUBCOMPONENTS == '' }} #Fix to use non-env var solution + 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 From be1bf5347b0940f35d023e8a0e2084fcd3a1b948 Mon Sep 17 00:00:00 2001 From: WenMeng-NOAA <48260754+WenMeng-NOAA@users.noreply.github.com> Date: Fri, 24 Oct 2025 11:22:58 -0400 Subject: [PATCH 44/48] Update inline post for GFSv17 // Add FV3 route handle opt #2939 // Fix fpe in MOM6 #2927 (#2932) * UFSWM - Update inline post, add route handle opt, fix MOM6 divide by zero * UFSATM - Update inline post read interface and upp hash. * upp - Change BRTMP into BRTEMP for GFS, GEFS, SFS * MOM6 - Fix divide by zero fpe in MOM_oda_incupd.F90 --------- Co-authored-by: Dusan Jovic --- MOM6-interface/MOM6 | 2 +- UFSATM | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1 + tests/fv3_conf/cpld_control_run.IN | 6 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 574 +++++------ tests/logs/RegressionTests_gaeac6.log | 584 +++++------ tests/logs/RegressionTests_hera.log | 828 ++++++++-------- tests/logs/RegressionTests_hercules.log | 909 +++++++++-------- tests/logs/RegressionTests_orion.log | 624 ++++++------ tests/logs/RegressionTests_ursa.log | 925 ++++++++++-------- tests/logs/RegressionTests_wcoss2.log | 595 ++++++----- tests/parm/control_gfsv17.nml.IN | 349 ------- tests/parm/model_configure.IN | 1 + tests/parm/model_configure_atmaq.IN | 1 + tests/parm/model_configure_fire.IN | 1 + tests/parm/model_configure_gnv1.IN | 1 + tests/parm/model_configure_hafs.IN | 1 + tests/parm/model_configure_ideal.IN | 1 + tests/parm/model_configure_regional.IN | 1 + tests/parm/model_configure_regional_rrfs_a.IN | 2 +- tests/parm/model_configure_regional_stoch.IN | 1 + tests/parm/model_configure_rrfs_conus13km.IN | 1 + tests/parm/postxconfig-NT-fv3lam.txt | 2 +- tests/parm/postxconfig-NT-gfs.txt | 2 +- tests/parm/postxconfig-NT-gfs_FH00.txt | 2 +- tests/test_changes.list | 108 +- tests/tests/cpld_control_gfsv17 | 2 + tests/tests/cpld_restart_gfsv17 | 2 + 32 files changed, 2818 insertions(+), 2814 deletions(-) delete mode 100644 tests/parm/control_gfsv17.nml.IN 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..062acd654f 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit e3d536f8203ea9d2ab68375040015f53383ad6b5 +Subproject commit 062acd654f645fad2bd0f128c5b7e8154187c71c diff --git a/tests/bl_date.conf b/tests/bl_date.conf index f6592fca6e..35cdd94d77 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251017 +export BL_DATE=20251021 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 8d0c436a0c..7b7885c593 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -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 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 1781149dea..dbc9097dd9 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Oct 20 12:01:53 UTC 2025 +Wed Oct 22 06:33:31 UTC 2025 Start Operation Requirement Test 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_1321507/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 252.660615 - 0: The maximum resident set size (KB) = 1557096 + 0: The total amount of wall time = 250.849673 + 0: The maximum resident set size (KB) = 1534888 Test bit_base PASS 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_1321507/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 886.482347 - 0: The maximum resident set size (KB) = 1537088 + 0: The total amount of wall time = 863.260932 + 0: The maximum resident set size (KB) = 1534628 Test dbg_base PASS 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_1321507/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 227.089729 - 0: The maximum resident set size (KB) = 1530756 + 0: The total amount of wall time = 228.088623 + 0: The maximum resident set size (KB) = 1530016 Test dcp PASS 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_1321507/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 226.772719 - 0: The maximum resident set size (KB) = 1539436 + 0: The total amount of wall time = 230.829455 + 0: The maximum resident set size (KB) = 1527812 Test mpi PASS 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_1321507/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 226.817856 - 0: The maximum resident set size (KB) = 1520660 + 0: The total amount of wall time = 226.454761 + 0: The maximum resident set size (KB) = 1540240 Test rst PASS 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_1321507/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 228.344215 - 0: The maximum resident set size (KB) = 1517288 + 0: The total amount of wall time = 231.835597 + 0: The maximum resident set size (KB) = 1515912 Test std_base PASS 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_1321507/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3829118/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 = 229.996447 - 0: The maximum resident set size (KB) = 1541988 + 0: The total amount of wall time = 230.115671 + 0: The maximum resident set size (KB) = 1528400 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 20 13:04:51 UTC 2025 -Elapsed time: 01h:02m:58s. Have a nice day! +Wed Oct 22 07:39:56 UTC 2025 +Elapsed time: 01h:06m:25s. 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 bc5a02e557..e6cc81e6d8 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 @@ -Mon Oct 20 10:37:31 UTC 2025 +Wed Oct 22 05:09:17 UTC 2025 Start Operation Requirement Test 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_799472/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3520262/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 = 2275.012814 - 0: The maximum resident set size (KB) = 1659608 + 0: The total amount of wall time = 2236.425550 + 0: The maximum resident set size (KB) = 1638892 Test dbg_base PASS 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_799472/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3520262/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 = 589.705345 - 0: The maximum resident set size (KB) = 1640584 + 0: The total amount of wall time = 588.893765 + 0: The maximum resident set size (KB) = 1643324 Test rst PASS 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_799472/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3520262/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 = 581.221056 - 0: The maximum resident set size (KB) = 1639980 + 0: The total amount of wall time = 582.707028 + 0: The maximum resident set size (KB) = 1635136 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 20 12:01:53 UTC 2025 -Elapsed time: 01h:24m:23s. Have a nice day! +Wed Oct 22 06:33:31 UTC 2025 +Elapsed time: 01h:24m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e9cb740567..f8e28c4450 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Oct 20 09:44:24 UTC 2025 +Wed Oct 22 04:13:13 UTC 2025 Start Operation Requirement Test 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_631636/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3065136/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 = 610.163490 - 0: The maximum resident set size (KB) = 880648 + 0: The total amount of wall time = 616.250620 + 0: The maximum resident set size (KB) = 892324 Test bit_base PASS 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_631636/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3065136/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 = 496.818161 - 0: The maximum resident set size (KB) = 833656 + 0: The total amount of wall time = 491.166716 + 0: The maximum resident set size (KB) = 866416 Test dcp PASS 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_631636/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3065136/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 = 491.140693 - 0: The maximum resident set size (KB) = 845228 + 0: The total amount of wall time = 492.445833 + 0: The maximum resident set size (KB) = 855796 Test std_base PASS 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_631636/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3065136/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 = 488.996245 - 0: The maximum resident set size (KB) = 846476 + 0: The total amount of wall time = 497.190526 + 0: The maximum resident set size (KB) = 862844 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 20 10:37:30 UTC 2025 -Elapsed time: 00h:53m:06s. Have a nice day! +Wed Oct 22 05:09:17 UTC 2025 +Elapsed time: 00h:56m:04s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index faa1d872cd..3dc3f8c619 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: -d897bb57e6fa3d94a101b637faa7be2d00f2c478 +8b934413511cea07cfe4e70406326d234fc72cfc Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,295 +40,295 @@ 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-20251017 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2322077 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4017174 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:45] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:34](3332 MB) -PASS -- TEST 'cpld_control_gefs_intel' [59:36, 16:14](4118 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:19, 07:41](3927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 13:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:36, 15:07](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:35, 16:26](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:12, 07:19](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:31, 07:29](1926 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:58, 17:30](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 13:07] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:40, 15:29](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:15] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:25, 20:13](1943 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:24, 08:16](3364 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:23, 08:25](3364 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:27, 04:37](3247 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:17, 08:09](3387 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:56, 04:47](3268 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:25, 07:34](3582 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:25, 08:03](3360 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 06:50](3306 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:49, 08:09](3365 MB) - -PASS -- COMPILE 's2swal_intel' [13:28, 11:58] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [25:45, 08:17](3367 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:27, 04:49](3246 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 08:15](3339 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:05] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:50](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:59, 07:12](1972 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:05](1974 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:16] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:15, 08:01](3363 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:33] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:09, 14:56](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:04, 07:24](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:24, 17:28](1894 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:41, 06:13](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:35, 02:05](2897 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:23, 01:25](2308 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:02, 01:28](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:03, 00:58](2113 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:46, 00:47](1459 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:02, 01:21](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:03, 00:59](2108 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:46, 00:58](1458 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:02, 00:55](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:02, 00:50](2039 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:47, 00:44](1394 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:41] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:17, 23:58](1976 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [11:41, 04:01](683 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:43, 02:33](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:47, 02:45](1586 MB) -PASS -- TEST 'control_latlon_intel' [10:36, 02:40](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:43, 02:42](1582 MB) -PASS -- TEST 'control_c48_intel' [13:53, 06:38](1594 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:52, 06:02](720 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 06:46](1596 MB) -PASS -- TEST 'control_c192_intel' [14:03, 07:24](1703 MB) -PASS -- TEST 'control_c384_intel' [50:53, 08:48](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [57:32, 09:21](1174 MB) -PASS -- TEST 'control_stochy_intel' [09:39, 01:54](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:37, 01:19](402 MB) -PASS -- TEST 'control_lndp_intel' [09:38, 02:00](636 MB) -PASS -- TEST 'control_iovr4_intel' [10:40, 02:40](629 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [12:03, 03:11](918 MB) -PASS -- TEST 'control_iovr5_intel' [10:41, 02:49](632 MB) -PASS -- TEST 'control_p8_intel' [11:28, 03:04](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:43, 03:14](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:16, 03:00](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:22, 02:57](1878 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:43, 03:12](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:48, 02:21](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [09:20, 01:56](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:40, 03:02](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:40, 01:57](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:38, 03:04](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:58, 02:55](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:02, 05:12](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:22, 04:10](1917 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:13, 03:17](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [11:44, 03:42](1866 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [11:23, 04:44](1871 MB) -PASS -- TEST 'regional_control_intel' [07:56, 05:17](871 MB) -PASS -- TEST 'regional_restart_intel' [06:54, 02:53](882 MB) -PASS -- TEST 'regional_decomp_intel' [07:50, 05:28](877 MB) -PASS -- TEST 'regional_2threads_intel' [11:59, 03:20](987 MB) -PASS -- TEST 'regional_noquilt_intel' [07:52, 05:10](1174 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:48, 05:17](871 MB) -PASS -- TEST 'regional_wofs_intel' [11:57, 07:02](1607 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:24, 09:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [12:20, 03:54](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:32] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [10:01, 04:13](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:22, 04:19](1204 MB) -PASS -- TEST 'rap_decomp_intel' [09:31, 04:14](1012 MB) -PASS -- TEST 'rap_2threads_intel' [09:28, 03:47](1098 MB) -PASS -- TEST 'rap_restart_intel' [07:20, 02:23](767 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:16, 04:07](1014 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 04:12](1015 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:44, 02:15](766 MB) -PASS -- TEST 'hrrr_control_intel' [08:54, 03:58](1008 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:28, 04:08](1010 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:34](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:46, 02:11](761 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:07, 07:18](1009 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 09:32](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:47, 09:09](1966 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:45] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:57, 06:46](962 MB) -PASS -- TEST 'control_ras_intel' [06:32, 03:27](667 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:15, 12:33](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 07:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:17, 03:05](1862 MB) -PASS -- TEST 'regional_control_faster_intel' [07:53, 05:02](873 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:50] ( 890 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:45, 02:40](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:48, 02:49](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:39, 03:33](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:36, 03:16](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:58, 04:55](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [09:35, 03:19](827 MB) -PASS -- TEST 'control_diag_debug_intel' [09:42, 03:12](1670 MB) -PASS -- TEST 'control_debug_p8_intel' [06:01, 03:07](1901 MB) -PASS -- TEST 'regional_debug_intel' [20:10, 18:12](927 MB) -PASS -- TEST 'rap_control_debug_intel' [08:36, 05:50](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:39, 05:32](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 05:45](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:37, 05:48](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 05:50](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:57, 05:57](1284 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:51](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:33, 05:48](1194 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:38, 05:45](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:37, 05:47](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:39, 05:37](1190 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:38, 05:43](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 09:11](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:39, 05:43](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:39, 05:42](1194 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:32, 09:37](1201 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:28] ( 848 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:20, 14:28](1693 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:52] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:21, 04:03](1043 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:49, 03:24](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 03:20](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:24, 03:18](940 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:55, 03:00](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:58, 03:36](884 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 01:59](727 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:36, 01:53](724 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:52] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:27, 03:03](1021 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:09, 01:23](1142 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:10, 03:01](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:09, 01:53](691 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 07:58] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:59, 04:15](918 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:34] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:37, 05:40](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:40, 05:35](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [27:40, 23:37](1103 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:41, 23:50](813 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:14, 13:21](1203 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:23, 24:33](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:22, 23:52](1169 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:32] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:38, 05:44](1105 MB) - -PASS -- COMPILE 'hafsw_intel' [13:27, 09:53] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:01, 04:29](705 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [20:19, 04:44](917 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:48, 03:42](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:53](785 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 11:55](800 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:33, 13:07](817 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:06, 05:29](459 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:27, 06:37](472 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [21:10, 02:58](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:34, 07:56](429 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:55, 03:50](489 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:02, 03:44](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:19, 04:29](550 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:46, 01:42](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 03:50](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:01] ( 1484 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:24, 14:16](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:19] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:21, 07:09](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:28, 07:18](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 09:40] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:47, 05:30](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:29, 08:42] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:09, 06:30](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:10, 06:24](736 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:37, 16:14](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:30, 09:32] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:29, 03:13](1567 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 02:16](1567 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:56](685 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:57](687 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 03:04](687 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:07](1567 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:26, 03:16](1567 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 03:01](686 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:31, 07:20](1367 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 07:00](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:13](1567 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:39](4520 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 05:34](4521 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:27, 09:36] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 03:06](1565 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:21, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:42, 01:10](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:35, 00:59](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:40, 00:46](437 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:32, 10:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:43, 03:59](1911 MB) - -PASS -- COMPILE 'atml_intel' [14:29, 09:23] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 03:29](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:04, 02:06](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:23, 04:26] ( 895 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:25, 05:40](1910 MB) - -PASS -- COMPILE 'atmw_intel' [10:24, 08:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:11, 02:12](1886 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:58, 04:29](3240 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:37, 05:17](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:40, 05:17](3129 MB) - -PASS -- COMPILE 'atmaq_intel' [09:23, 07:52] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [21:09, 15:47](2392 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [23:47, 18:49](2454 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:36] ( 865 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [47:09, 40:54](1972 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:39] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:34, 06:34](3333 MB) +PASS -- TEST 'cpld_control_gefs_intel' [02:15, 16:38](4114 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:31, 07:52](3926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 13:02] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:38, 15:01](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:35, 16:30](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:13, 07:24](1073 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:31, 07:34](1933 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:58, 17:35](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 12:59] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:41, 15:30](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:19] ( 1539 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:16, 21:18](1943 MB) + +PASS -- COMPILE 's2swa_intel' [13:25, 11:49] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:10, 08:12](3368 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:37, 08:10](3367 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:04, 04:46](3246 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:27, 08:19](3384 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:33, 04:47](3262 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:53, 07:36](3584 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:53, 08:04](3359 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:52, 06:45](3307 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:28, 08:12](3368 MB) + +PASS -- COMPILE 's2swal_intel' [13:27, 11:51] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [23:50, 08:20](3365 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:38, 04:52](3245 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:13, 08:18](3338 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 04:51](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:05, 07:22](1974 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:03](1970 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:04] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:28, 08:11](3369 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 15:09](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:05, 07:25](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:23, 17:34](1895 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:41, 06:12](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:37, 02:16](2898 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:13, 01:37](2299 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:02, 01:30](2112 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:02, 01:04](2109 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:50, 00:55](1459 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:02, 01:28](2108 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:02, 00:57](2110 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:50, 00:47](1458 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:02, 01:02](2039 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:01, 00:50](2041 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:49, 00:56](1396 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:38] ( 1539 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:23, 24:08](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:40, 04:10](683 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:47, 02:30](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:51, 02:47](1584 MB) +PASS -- TEST 'control_latlon_intel' [11:39, 02:37](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:47, 02:39](1584 MB) +PASS -- TEST 'control_c48_intel' [10:52, 06:41](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:50, 06:02](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [15:54, 07:00](1599 MB) +PASS -- TEST 'control_c192_intel' [17:04, 07:32](1703 MB) +PASS -- TEST 'control_c384_intel' [39:50, 08:52](2021 MB) +PASS -- TEST 'control_c384gdas_intel' [50:29, 09:18](1170 MB) +PASS -- TEST 'control_stochy_intel' [09:39, 01:52](634 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:39, 01:12](402 MB) +PASS -- TEST 'control_lndp_intel' [09:39, 01:51](637 MB) +PASS -- TEST 'control_iovr4_intel' [10:42, 02:41](628 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:02, 03:06](919 MB) +PASS -- TEST 'control_iovr5_intel' [09:40, 02:44](634 MB) +PASS -- TEST 'control_p8_intel' [10:31, 03:07](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:45, 03:20](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:17, 03:01](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:20, 03:04](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:54, 03:11](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:49, 02:22](2435 MB) +PASS -- TEST 'control_restart_p8_intel' [09:22, 02:00](1011 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:40, 03:08](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:42, 01:59](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:04](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:51, 02:55](1939 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:01, 05:10](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 04:06](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:17, 03:17](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [10:44, 03:46](1865 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:23, 04:43](1873 MB) +PASS -- TEST 'regional_control_intel' [08:59, 05:13](877 MB) +PASS -- TEST 'regional_restart_intel' [06:56, 02:55](881 MB) +PASS -- TEST 'regional_decomp_intel' [08:51, 05:31](879 MB) +PASS -- TEST 'regional_2threads_intel' [09:52, 03:21](1000 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 05:16](1165 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:52, 05:12](877 MB) +PASS -- TEST 'regional_wofs_intel' [11:57, 06:52](1608 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:24, 09:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [12:22, 04:03](1888 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:36] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [10:59, 04:03](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:22, 04:23](1211 MB) +PASS -- TEST 'rap_decomp_intel' [09:34, 04:16](1013 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 03:45](1091 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 02:16](765 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:18, 04:06](1013 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:30, 04:10](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:31, 02:25](769 MB) +PASS -- TEST 'hrrr_control_intel' [09:50, 03:57](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:28, 04:01](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:30, 03:27](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:39, 02:12](759 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:07, 07:23](1008 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:42, 09:34](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:42, 09:07](1967 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:45] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [15:01, 07:01](961 MB) +PASS -- TEST 'control_ras_intel' [06:34, 03:29](668 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 07:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:17, 12:27](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 07:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:17, 03:08](1862 MB) +PASS -- TEST 'regional_control_faster_intel' [08:56, 04:59](875 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:50] ( 892 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:48, 02:37](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 02:53](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:39, 03:41](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:38, 03:11](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:00, 05:09](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [06:33, 03:15](838 MB) +PASS -- TEST 'control_diag_debug_intel' [06:39, 03:14](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [06:59, 03:15](1900 MB) +PASS -- TEST 'regional_debug_intel' [20:11, 18:07](928 MB) +PASS -- TEST 'rap_control_debug_intel' [08:35, 05:45](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 05:37](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:37, 05:40](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:39, 05:42](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:38, 05:49](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:51, 06:05](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:37, 05:53](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:39, 05:53](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:39, 05:53](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:40, 05:49](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:39, 05:42](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:40, 05:56](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:44, 09:08](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:40, 05:44](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:43, 05:43](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:06, 09:40](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 03:32] ( 850 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [20:22, 14:38](1696 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 07:46] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:38, 04:11](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:16, 03:32](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:33, 03:23](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:24, 03:10](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:51, 03:03](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:51, 03:41](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 02:01](729 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:55](723 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:50] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:34, 03:08](1020 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:10, 01:24](1143 MB) +PASS -- TEST 'conus13km_decomp_intel' [09:11, 03:07](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [04:07, 01:53](690 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:26, 07:51] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:59, 04:15](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:33] ( 783 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:39, 05:32](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:41, 05:34](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [28:45, 23:40](1103 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:40, 23:42](812 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:17, 13:21](1201 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:23, 24:25](1087 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:33, 23:44](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 03:32] ( 783 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:40, 05:39](1106 MB) + +PASS -- COMPILE 'hafsw_intel' [14:27, 10:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:10, 04:25](705 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [22:20, 04:43](917 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:50, 03:42](1050 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 06:54](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 11:45](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:36, 13:06](949 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:06, 05:24](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:18, 06:41](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:13, 03:06](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:18, 07:57](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 03:55](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:01, 03:41](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:26, 04:30](549 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:47, 01:39](406 MB) +PASS -- TEST 'gnv1_nested_intel' [08:14, 03:49](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:01] ( 1486 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:28, 14:10](592 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:29, 09:18] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:29, 07:12](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:35, 07:17](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:28, 09:49] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:55, 05:28](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:29, 09:16] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:08, 06:23](760 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 06:26](734 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:37, 16:22](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:30, 09:30] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 03:12](1567 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 02:15](1568 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:59](685 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:47](685 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:28, 03:14](684 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 03:22](1564 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:28, 03:16](1564 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:27, 02:59](685 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:38, 07:15](1366 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 07:06](705 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:23, 03:05](1564 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:33, 05:34](4520 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 05:40](4522 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:26] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 03:21](1565 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:43, 01:10](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:37, 00:56](437 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:41, 00:45](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 10:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:44, 04:01](1911 MB) + +PASS -- COMPILE 'atml_intel' [15:29, 09:25] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [11:30, 03:39](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:05, 02:10](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:24, 04:23] ( 897 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:31, 05:37](1910 MB) + +PASS -- COMPILE 'atmw_intel' [14:27, 08:47] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:12, 02:12](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:00, 04:30](3241 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:45, 05:16](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:48, 05:16](3129 MB) + +PASS -- COMPILE 'atmaq_intel' [09:22, 07:53] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [22:16, 15:45](2398 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [26:03, 19:01](2441 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:40] ( 867 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:13, 40:43](1972 MB) SYNOPSIS: -Starting Date/Time: 20251020 19:57:20 -Ending Date/Time: 20251020 22:36:26 -Total Time: 02h:39m:39s +Starting Date/Time: 20251022 16:49:59 +Ending Date/Time: 20251022 19:31:57 +Total Time: 02h:42m:31s Compiles Completed: 39/39 Tests Completed: 200/200 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index da8b6f7f4b..c55c215071 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: -d57861830f2d2cbfedc4584bbcf9818034ff37ec +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,310 +40,310 @@ 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-20251017 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_849972 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3831302 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:14, 08:34] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:37, 04:00](2021 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:13, 12:43] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:08](1906 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:48, 11:08](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:42, 04:55](1073 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:39, 04:58](1918 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:32, 11:46](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:13, 12:49] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:26, 10:17](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:32] ( 1557 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:49, 12:39](1927 MB) - -PASS -- COMPILE 's2swa_intel' [10:14, 08:38] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:39, 05:03](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:39, 05:05](2052 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:32, 02:41](1598 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:37, 05:06](2076 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:34, 02:45](1453 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:32, 06:01](2224 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 04:59](2055 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:30, 04:03](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:39, 05:04](2052 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [09:56, 05:31](2383 MB) - -PASS -- COMPILE 's2swal_intel' [10:14, 08:27] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [06:40, 05:05](2066 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:32, 02:46](1594 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:36, 05:07](1914 MB) - -PASS -- COMPILE 's2sw_intel' [09:12, 08:07] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:25, 03:00](1931 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:30](1846 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:33] ( 1447 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:51, 08:27](2080 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:26] ( 1447 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:47, 03:49](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:12, 06:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:28, 03:10](1979 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:13] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:00](2050 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:19] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:02, 10:04](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:36, 05:01](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:28, 11:43](1912 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:23, 04:14](2857 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:22, 01:18](2872 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:19, 00:46](2283 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:18, 00:45](2087 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:20, 00:25](2082 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:17, 00:19](1431 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:17, 00:45](2093 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:17, 00:24](2092 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:19, 00:19](1430 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:16, 00:26](2022 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:17, 00:20](2019 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:17, 00:16](1368 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:14] ( 1557 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:38, 16:03](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:16, 02:42](523 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 01:40](1415 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:20, 01:52](1424 MB) -PASS -- TEST 'control_latlon_intel' [03:19, 01:43](1428 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 01:48](1422 MB) -PASS -- TEST 'control_c48_intel' [06:20, 04:44](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 04:28](686 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:20, 04:53](1569 MB) -PASS -- TEST 'control_c192_intel' [07:23, 04:50](1692 MB) -PASS -- TEST 'control_c384_intel' [11:33, 09:47](1975 MB) -PASS -- TEST 'control_c384gdas_intel' [14:22, 10:22](1181 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:24](479 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](282 MB) -PASS -- TEST 'control_lndp_intel' [08:17, 06:10](480 MB) -PASS -- TEST 'control_iovr4_intel' [03:17, 01:56](480 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:23, 02:04](780 MB) -PASS -- TEST 'control_iovr5_intel' [03:14, 01:44](474 MB) -PASS -- TEST 'control_p8_intel' [03:26, 01:56](1709 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:27, 02:01](1713 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:24, 03:00](1714 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:20, 02:04](1741 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:24, 01:59](1739 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:22, 01:32](2420 MB) -PASS -- TEST 'control_restart_p8_intel' [03:21, 01:08](866 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:24, 01:52](1709 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 01:08](870 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:22, 01:58](1711 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:22, 02:10](1792 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:17](1723 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:27, 02:35](1770 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:01](1726 MB) -PASS -- TEST 'merra2_thompson_intel' [04:27, 02:16](1720 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:25, 03:59](1729 MB) -PASS -- TEST 'regional_control_intel' [05:18, 03:15](857 MB) -PASS -- TEST 'regional_restart_intel' [04:19, 01:50](881 MB) -PASS -- TEST 'regional_decomp_intel' [05:18, 03:26](861 MB) -PASS -- TEST 'regional_2threads_intel' [04:17, 02:37](974 MB) -PASS -- TEST 'regional_noquilt_intel' [05:51, 03:15](1158 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 03:19](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:18](859 MB) -PASS -- TEST 'regional_wofs_intel' [06:21, 04:16](1586 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:23, 02:33](1743 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 05:46] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [05:22, 02:39](867 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:13, 02:46](1202 MB) -PASS -- TEST 'rap_decomp_intel' [04:48, 02:44](859 MB) -PASS -- TEST 'rap_2threads_intel' [04:40, 03:06](946 MB) -PASS -- TEST 'rap_restart_intel' [03:26, 01:27](730 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:44, 02:39](868 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:25, 02:57](861 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:23, 01:26](725 MB) -PASS -- TEST 'hrrr_control_intel' [05:30, 02:46](862 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 02:49](857 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:19, 03:11](940 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 01:25](686 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:29, 04:53](859 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:22, 05:57](1809 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:44](1796 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 05:33] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:22, 04:11](817 MB) -PASS -- TEST 'control_ras_intel' [04:16, 02:14](516 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:28, 07:33](1506 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:45, 01:57](1705 MB) -PASS -- TEST 'regional_control_faster_intel' [05:18, 03:11](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:22] ( 905 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:35, 01:34](1438 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 01:38](1448 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:07](645 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 01:55](658 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 02:52](961 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 01:56](652 MB) -PASS -- TEST 'control_diag_debug_intel' [03:19, 01:54](1506 MB) -PASS -- TEST 'control_debug_p8_intel' [03:26, 01:52](1738 MB) -PASS -- TEST 'regional_debug_intel' [13:35, 11:18](893 MB) -PASS -- TEST 'rap_control_debug_intel' [05:17, 03:25](1035 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:18](1028 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:21](1030 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:25](1031 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:24](1045 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:32](1117 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:30](1038 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:24](1033 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:21](1032 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:21](1039 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:20](1032 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:22](1033 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:31](1032 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:23](1032 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:22](1036 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:43](1036 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:03] ( 862 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:27, 08:37](1539 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:37] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:32, 02:33](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:29, 02:15](746 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:10](738 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:23, 02:39](788 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:35](779 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:17](735 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:14](631 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:13](617 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:37] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:37, 01:53](1017 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:23, 00:56](1023 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:23, 01:53](1022 MB) -PASS -- TEST 'conus13km_restart_intel' [03:23, 01:07](888 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:26] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 02:44](779 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:09] ( 795 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:12](911 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:12](911 MB) -PASS -- TEST 'conus13km_debug_intel' [15:28, 13:42](1062 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:23, 13:59](757 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:22, 12:37](1068 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:20, 14:17](1061 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 13:59](1129 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:08] ( 795 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:38](951 MB) - -PASS -- COMPILE 'hafsw_intel' [09:10, 08:07] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:27, 02:37](830 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:52, 03:49](1050 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:19, 02:19](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:33, 04:16](902 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:30, 07:09](939 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:32, 07:42](968 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:15](453 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:34, 03:54](469 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:35](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:11](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:22](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:28, 02:12](489 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:28, 02:40](563 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:52](407 MB) -PASS -- TEST 'gnv1_nested_intel' [14:45, 02:20](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:22] ( 1502 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:30, 07:57](558 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:41] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:31, 04:29](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:31, 04:34](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 08:01] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:51, 03:14](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:43] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:28, 03:56](882 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:29, 03:55](855 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 10:57](889 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:17, 02:04](1549 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:22](1550 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:16, 01:54](666 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:15, 01:56](670 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:16, 01:56](671 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:15, 02:04](1552 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:15, 02:05](1557 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:15, 01:50](670 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:36, 04:57](1357 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:31, 04:43](708 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:16, 02:04](1552 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [12:17, 03:47](4511 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [11:16, 03:48](4516 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:15] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:15, 04:06](1552 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:02] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:21, 02:02](1555 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:23, 00:54](300 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:21, 00:37](438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:42] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:48, 04:01](2019 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:13, 11:54] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:07](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 11:09](1936 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:35, 04:55](1055 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:35, 05:01](1909 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:26, 11:46](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:13, 13:03] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:34, 10:19](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:34] ( 1559 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:39, 12:44](1924 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:11] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:43, 05:07](2077 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:48, 05:02](2061 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:35, 02:46](1602 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:37, 05:04](2080 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:30, 04:38](1444 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 05:56](2224 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:33, 04:55](2053 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:47, 04:04](1990 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:44, 05:00](2052 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [10:24, 05:29](2381 MB) + +PASS -- COMPILE 's2swal_intel' [09:11, 08:07] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:48, 05:03](2061 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:36, 02:47](1591 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:40, 05:10](1899 MB) + +PASS -- COMPILE 's2sw_intel' [09:11, 07:50] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:35, 02:59](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:27](1847 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:32] ( 1449 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:16](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:27] ( 1449 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:38, 03:47](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:33] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 03:12](1966 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:08] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:39, 04:53](2049 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 12:06] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:42, 10:04](1917 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:40, 05:00](1083 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 11:45](1901 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:23, 04:17](2868 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:23, 01:19](2866 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:22, 00:47](2282 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:19, 00:45](2093 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:18, 00:24](2082 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:21, 00:22](1435 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:17, 00:46](2088 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:21, 00:25](2091 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:19, 00:18](1434 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:17, 00:27](2024 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:19, 00:22](2016 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:19, 00:18](1366 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:24] ( 1559 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:33, 16:03](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:35] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:19, 02:35](528 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:21, 01:36](1416 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:24, 01:42](1431 MB) +PASS -- TEST 'control_latlon_intel' [07:19, 01:39](1426 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:21, 01:42](1427 MB) +PASS -- TEST 'control_c48_intel' [08:22, 04:39](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 04:19](689 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:21, 04:47](1568 MB) +PASS -- TEST 'control_c192_intel' [11:25, 04:52](1689 MB) +PASS -- TEST 'control_c384_intel' [16:43, 09:47](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [17:29, 10:16](1183 MB) +PASS -- TEST 'control_stochy_intel' [06:19, 01:14](484 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:42](279 MB) +PASS -- TEST 'control_lndp_intel' [06:19, 01:07](475 MB) +PASS -- TEST 'control_iovr4_intel' [08:17, 01:42](479 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:20, 02:02](772 MB) +PASS -- TEST 'control_iovr5_intel' [08:17, 01:44](477 MB) +PASS -- TEST 'control_p8_intel' [07:32, 01:57](1709 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 02:00](1711 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:26, 01:56](1714 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:28, 01:57](1736 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:26, 02:03](1738 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:26, 01:28](2439 MB) +PASS -- TEST 'control_restart_p8_intel' [03:21, 01:09](869 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:23, 01:55](1706 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:09](865 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:22, 01:56](1716 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:21, 02:12](1793 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:20, 03:15](1710 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:36](1772 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:25, 02:03](1718 MB) +PASS -- TEST 'merra2_thompson_intel' [04:26, 02:18](1715 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:47, 03:56](1730 MB) +PASS -- TEST 'regional_control_intel' [05:22, 03:20](871 MB) +PASS -- TEST 'regional_restart_intel' [03:24, 01:51](880 MB) +PASS -- TEST 'regional_decomp_intel' [05:19, 03:28](863 MB) +PASS -- TEST 'regional_2threads_intel' [04:17, 02:49](993 MB) +PASS -- TEST 'regional_noquilt_intel' [05:19, 03:18](1160 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:18, 03:15](848 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:19](854 MB) +PASS -- TEST 'regional_wofs_intel' [06:19, 04:14](1589 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:12, 06:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:28, 02:35](1741 MB) + +PASS -- COMPILE 'rrfs_intel' [07:12, 05:44] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:26, 02:41](866 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:36, 02:52](1208 MB) +PASS -- TEST 'rap_decomp_intel' [04:22, 02:53](862 MB) +PASS -- TEST 'rap_2threads_intel' [05:23, 03:06](948 MB) +PASS -- TEST 'rap_restart_intel' [03:31, 01:30](727 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:31, 02:39](862 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:30, 02:45](862 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:28, 01:27](725 MB) +PASS -- TEST 'hrrr_control_intel' [04:34, 02:32](858 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:39](855 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:22, 03:00](937 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:26](689 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:29, 04:43](855 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 06:00](1810 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:44](1804 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:26] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:21, 04:19](821 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:15](517 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:58, 07:36](1500 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:29, 01:58](1708 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](849 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:21] ( 907 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:17, 01:33](1448 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:16, 01:39](1444 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:07](648 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:14, 01:54](647 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:28, 02:50](957 MB) +PASS -- TEST 'control_ras_debug_intel' [03:18, 01:53](658 MB) +PASS -- TEST 'control_diag_debug_intel' [03:19, 01:54](1508 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 01:53](1737 MB) +PASS -- TEST 'regional_debug_intel' [13:26, 11:26](881 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 03:23](1037 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:22](1027 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:24](1030 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:21](1031 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:22](1032 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:33](1115 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:23](1036 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:27](1035 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:26](1034 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:26](1043 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:21](1032 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:20](1033 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:23](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:19](1035 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:23](1030 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:43](1039 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:11, 02:03] ( 864 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:25, 08:42](1535 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:21] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:33, 02:35](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:32, 02:17](746 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:27, 02:11](731 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:33, 02:42](793 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:34, 02:37](788 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 02:19](739 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:22, 01:15](635 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:12](612 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:28] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:40, 01:52](1018 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:56](1028 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:25, 01:55](1021 MB) +PASS -- TEST 'conus13km_restart_intel' [03:24, 01:08](883 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:34] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:47](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:11] ( 797 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:17](914 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:12](909 MB) +PASS -- TEST 'conus13km_debug_intel' [15:30, 13:43](1060 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:23, 14:04](759 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:22, 12:46](1069 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:22, 14:21](1059 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 13:51](1124 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:08] ( 797 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:18](947 MB) + +PASS -- COMPILE 'hafsw_intel' [09:11, 07:40] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:29, 02:32](841 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:55, 03:51](1047 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:21](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:33, 04:14](900 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [08:27, 07:06](934 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:41, 07:38](958 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:11](450 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:31, 03:52](467 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 01:36](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:02, 04:08](422 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:20](486 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:29, 02:11](490 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:27, 02:40](559 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:52](409 MB) +PASS -- TEST 'gnv1_nested_intel' [04:42, 02:33](1685 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:23] ( 1504 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:26, 07:54](564 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:44] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:28, 04:30](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:30, 04:35](771 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:54] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:55, 03:14](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:26] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:29, 03:54](891 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:29, 03:56](851 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:34, 10:55](882 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:09] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 02:05](1549 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:24](1547 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:52](671 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:53](669 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:55](667 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:03](1549 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:03](1552 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:52](672 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:34, 04:58](1359 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:32, 04:43](705 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:03](1549 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:46](4510 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:51](4514 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:30] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:09](1553 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:04](1552 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:57](304 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:18, 00:42](429 MB) PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:29](430 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:08] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:42, 02:28](1789 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:12] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:37, 02:27](1766 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:29, 03:12](1765 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:31, 03:12](1762 MB) -PASS -- COMPILE 'atml_intel' [08:10, 06:18] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:32, 02:28](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:24, 01:25](1023 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:17] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:30, 02:26](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:23](1018 MB) -PASS -- COMPILE 'atml_debug_intel' [04:10, 03:00] ( 910 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:29, 03:17](1893 MB) +PASS -- COMPILE 'atml_debug_intel' [04:10, 02:49] ( 912 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:29, 03:22](1880 MB) -PASS -- COMPILE 'atmw_intel' [09:10, 07:24] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:20](1746 MB) +PASS -- COMPILE 'atmw_intel' [09:12, 07:28] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:21](1737 MB) -PASS -- COMPILE 'atmaero_intel' [07:10, 05:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:29, 02:43](1924 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:35, 03:06](1574 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:26, 03:14](1595 MB) +PASS -- COMPILE 'atmaero_intel' [07:10, 05:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:29, 02:41](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:09](1570 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:18](1595 MB) -PASS -- COMPILE 'atmaq_intel' [07:10, 05:22] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [14:58, 12:47](2971 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:50, 14:22](2966 MB) +PASS -- COMPILE 'atmaq_intel' [07:12, 05:29] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [15:01, 12:41](2970 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:56, 14:29](2969 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:08] ( 879 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:49, 25:29](2984 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:11] ( 881 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:49, 25:20](2983 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:13] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 05:59](788 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:20] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:21, 06:00](786 MB) SYNOPSIS: -Starting Date/Time: 20251020 11:58:58 -Ending Date/Time: 20251020 13:22:42 -Total Time: 01h:24m:12s +Starting Date/Time: 20251022 01:11:42 +Ending Date/Time: 20251022 02:31:26 +Total Time: 01h:20m:13s Compiles Completed: 44/44 Tests Completed: 205/205 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 1cf900791f..b06e4401f5 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: -d57861830f2d2cbfedc4584bbcf9818034ff37ec +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,9 +12,9 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 91c20381ffe0357001a6626b3af1d37354b77cc8 WW3 (6.07.1-471-g91c20381) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -26,425 +26,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: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251017 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3128742 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2915315 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:38] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:58, 12:05](2215 MB) -PASS -- TEST 'cpld_control_gefs_intel' [30:53, 16:20](3056 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [17:41, 05:08](2735 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [27:42, 15:59](3075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:18] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:52, 19:26](2082 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:06, 21:11](2272 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:59, 07:57](1358 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:12, 09:00](2213 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:53, 23:30](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:46] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:39, 19:42](2067 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:20] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:48, 21:42](1933 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:19] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:25, 12:33](2278 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:24, 11:44](2282 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:10, 08:06](1886 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:13, 12:05](2304 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:12, 06:35](1892 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:17, 10:43](2339 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:13, 11:42](2267 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:13, 11:32](2066 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:18, 11:47](2291 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:12, 14:38](2665 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:44, 09:12](2820 MB) - -PASS -- COMPILE 's2swal_intel' [14:11, 12:41] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [15:22, 12:36](2120 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:12, 06:16](1723 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:08, 07:20](2255 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:38] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:49, 11:19](2107 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:26](2187 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:19] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:52, 13:30](2292 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:04] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:51, 06:29](2133 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:57] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:16](2172 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:12, 12:10] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:03, 11:42](2286 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:23] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:57, 17:10](2137 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:58](1368 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:53, 21:05](1941 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:39, 08:19](3087 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:39, 02:23](3083 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:08, 01:24](2517 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:14](2259 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:43](2265 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:34, 00:35](1591 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 01:19](2255 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:42](2257 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:30, 00:35](1589 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:33, 00:44](2187 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:34](2189 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:35, 00:34](1532 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:56] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 27:54](1976 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:44] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:21](829 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:22](1719 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:32](1731 MB) -PASS -- TEST 'control_latlon_intel' [04:23, 02:28](1730 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:34](1721 MB) -PASS -- TEST 'control_c48_intel' [09:26, 07:17](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:38](849 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:26, 07:26](1727 MB) -PASS -- TEST 'control_c192_intel' [09:35, 07:42](1919 MB) -PASS -- TEST 'control_c384_intel' [11:18, 08:33](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [14:10, 10:33](1396 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:42](784 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:20, 01:04](631 MB) -PASS -- TEST 'control_lndp_intel' [03:19, 01:39](787 MB) -PASS -- TEST 'control_iovr4_intel' [05:35, 02:29](788 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:31, 04:37](1076 MB) -PASS -- TEST 'control_iovr5_intel' [04:47, 02:32](781 MB) -PASS -- TEST 'control_p8_intel' [06:46, 04:15](2014 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:10](2025 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:43, 03:20](2018 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:45, 03:17](2038 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:44, 03:14](2053 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:44, 02:06](2420 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 01:46](1278 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:58](2008 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:36, 01:43](1281 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:40, 05:00](2002 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:48, 03:24](2031 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:10](2022 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 04:17](2075 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:09](2035 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:33](2022 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [07:29, 05:14](2037 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:17](1225 MB) -PASS -- TEST 'regional_restart_intel' [04:32, 02:56](1240 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 05:41](1215 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 04:00](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:20](1507 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:23](1214 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:20](1223 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 06:45](2046 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:24] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:45, 04:10](2053 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:49] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [06:34, 04:21](1164 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:10](1325 MB) -PASS -- TEST 'rap_decomp_intel' [06:33, 04:24](1172 MB) -PASS -- TEST 'rap_2threads_intel' [06:32, 04:40](1185 MB) -PASS -- TEST 'rap_restart_intel' [04:36, 02:14](1184 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:33, 04:09](1180 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:33, 04:19](1167 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:35, 02:15](1172 MB) -PASS -- TEST 'hrrr_control_intel' [05:36, 03:58](1174 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:07](1165 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 04:22](1168 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:12](1143 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:36, 07:40](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:27](2119 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:59](2187 MB) - -PASS -- COMPILE 'csawmg_intel' [10:12, 08:30] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:32, 06:17](1158 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:19](871 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:37] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [13:40, 11:35](1795 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:45] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:44, 02:48](2024 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:50](1225 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:22] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:09](1748 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:18](1745 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](960 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:47](952 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:20](1271 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](968 MB) -PASS -- TEST 'control_diag_debug_intel' [04:29, 02:44](1819 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 02:37](2049 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 17:02](1242 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 04:50](1343 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:50](1334 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:51](1340 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:45](1338 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:51](1342 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:13](1429 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:00](1342 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:56](1343 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:51](1342 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:48](1343 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:49](1337 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:49](1336 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 08:02](1339 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 05:02](1355 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:47](1343 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:43](1360 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:47] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:38, 13:23](1822 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:27] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:58](1183 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:31, 03:30](1115 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:23](1106 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:31, 04:00](1034 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:49](1030 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:26, 03:37](1040 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:54](1064 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](1056 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:35] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:50, 02:58](1460 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:22](1310 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:39, 03:01](1489 MB) -PASS -- TEST 'conus13km_restart_intel' [03:39, 01:44](1334 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:40] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:33, 04:18](1130 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:48] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1219 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1223 MB) -PASS -- TEST 'conus13km_debug_intel' [24:49, 22:28](1502 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 22:49](1190 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:43, 19:35](1332 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:44, 22:59](1516 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:42, 22:55](1573 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:47] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:00](1285 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:02] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:44](914 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:23, 05:24](1114 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:25, 03:36](1171 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:51, 06:14](937 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:47, 28:49](965 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:36, 05:12](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:43, 06:01](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:34](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:06, 06:32](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:30, 03:35](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:30, 03:18](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:33, 03:47](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:05](404 MB) -PASS -- TEST 'gnv1_nested_intel' [05:54, 03:39](1869 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:25] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:32, 12:32](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 12:19] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:35, 15:08](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:37, 15:14](672 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 12:20] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 10:56](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 11:19] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:41, 05:53](942 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:41, 06:06](929 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:35](1314 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:08] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:00](2006 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:58](1955 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:51](1267 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:51](1264 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:49](1261 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:01](2006 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:58](2011 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:46](1259 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:11](1778 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:29, 07:02](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:06](2001 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 05:00](4966 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:57](4965 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:53] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:53](1912 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:11] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:04](2009 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:03] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:51](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:34](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:24](305 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:25] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:30](635 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:20](517 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 11:13] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:48, 03:38](2091 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:10] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:43](2107 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:59] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:19](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:33, 01:50](1129 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:03] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:41, 04:50](1872 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:09] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:36, 01:55](2037 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 09:17] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:43, 04:17](2108 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:57](1888 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:58](1892 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:39] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [18:40, 15:11](2924 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [21:29, 18:29](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:16] ( 879 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:14, 39:41](2942 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:09] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:04, 12:15](2213 MB) +PASS -- TEST 'cpld_control_gefs_intel' [33:18, 19:01](3042 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [21:32, 05:11](2739 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [26:52, 16:00](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:14] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:54, 21:14](2082 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:00, 20:39](2282 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 07:58](1368 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:01, 08:55](2220 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:58, 25:04](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:54] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:01](2063 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:07] ( 1559 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 21:50](1940 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:28] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:08, 14:23](2285 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:12, 12:28](2294 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:09, 06:15](1892 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:04, 12:25](2308 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:13, 06:09](1888 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:04, 12:23](2351 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:04, 12:31](2267 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:04, 12:14](2057 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:11, 12:20](2292 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:56, 16:45](2660 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:41, 08:34](2798 MB) + +PASS -- COMPILE 's2swal_intel' [13:11, 12:01] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [14:55, 12:24](2127 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:06, 06:18](1733 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:49, 08:00](2253 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 11:06] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:43, 11:20](2112 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:45, 06:19](2191 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:12] ( 1449 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:52, 15:09](2272 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:56] ( 1449 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:49, 06:33](2074 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:55] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:21](2176 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:30] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 11:28](2281 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:51] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:54, 17:06](2134 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 07:57](1365 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:57, 20:08](1940 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:42, 07:49](3097 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:43, 02:23](3074 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:34, 01:25](2519 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:37, 01:15](2257 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:43](2265 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:34](1587 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:14](2259 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:37, 00:43](2254 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:33, 00:33](1591 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:37, 00:42](2194 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:38, 00:34](2183 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:29](1532 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:43] ( 1559 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 28:04](1981 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:25] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 03:21](828 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](1710 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:22, 02:35](1726 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:29](1723 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:34](1727 MB) +PASS -- TEST 'control_c48_intel' [09:22, 07:16](1721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:22, 06:40](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:22, 07:27](1730 MB) +PASS -- TEST 'control_c192_intel' [09:34, 07:33](1921 MB) +PASS -- TEST 'control_c384_intel' [11:22, 08:29](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [12:10, 08:38](1395 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:40](789 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:02](629 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:33](787 MB) +PASS -- TEST 'control_iovr4_intel' [04:19, 02:35](781 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 03:02](1078 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:30](783 MB) +PASS -- TEST 'control_p8_intel' [04:42, 02:59](2004 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:43, 03:11](2016 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:56](2012 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:40, 02:55](2034 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:41, 03:05](2047 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:39, 02:10](2413 MB) +PASS -- TEST 'control_restart_p8_intel' [03:40, 01:46](1281 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](2016 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:42](1285 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:36, 03:03](1996 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:35, 03:21](2047 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:33, 05:10](2018 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:46, 04:16](2075 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:10](2019 MB) +PASS -- TEST 'merra2_thompson_intel' [05:42, 03:32](2035 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:30, 04:51](2035 MB) +PASS -- TEST 'regional_control_intel' [07:32, 05:17](1224 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 02:53](1240 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:34](1213 MB) +PASS -- TEST 'regional_2threads_intel' [05:30, 04:00](1093 MB) +PASS -- TEST 'regional_noquilt_intel' [07:31, 05:17](1508 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 05:21](1211 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:17](1224 MB) +PASS -- TEST 'regional_wofs_intel' [08:31, 06:43](2044 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:11, 11:15] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:45, 04:10](2046 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:23] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [06:35, 04:10](1182 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:09](1326 MB) +PASS -- TEST 'rap_decomp_intel' [06:32, 04:18](1168 MB) +PASS -- TEST 'rap_2threads_intel' [06:31, 04:40](1178 MB) +PASS -- TEST 'rap_restart_intel' [04:36, 02:13](1172 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:34, 04:11](1177 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:29, 04:22](1164 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:32, 02:15](1176 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 04:01](1174 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:06](1152 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:30, 04:23](1168 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1141 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:34, 07:37](1213 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:23](2114 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:19, 09:00](2178 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:11] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:30, 06:15](1165 MB) +PASS -- TEST 'control_ras_intel' [05:18, 03:19](864 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:14] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [13:39, 11:30](1792 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:54] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:38, 02:49](2014 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 04:52](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:31] ( 907 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:11](1754 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:14](1762 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:00](964 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:42](957 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:11](1276 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:43](968 MB) +PASS -- TEST 'control_diag_debug_intel' [04:28, 02:42](1816 MB) +PASS -- TEST 'control_debug_p8_intel' [04:34, 02:41](2044 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 17:01](1222 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:51](1341 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:42](1350 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:47](1340 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:54](1341 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:54](1335 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:07](1436 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:01](1343 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:57](1353 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:54](1344 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1341 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:47](1339 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:52](1334 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:55](1338 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:53](1351 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:47](1341 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:32](1359 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:57] ( 864 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:43, 13:08](1819 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 08:24] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:56](1186 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:29, 03:31](1116 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 03:25](1094 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:27, 03:59](1046 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:27, 03:50](1040 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:38](1025 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:27, 01:54](1066 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](1055 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:29] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:50, 03:00](1462 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:18](1291 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:40, 02:59](1496 MB) +PASS -- TEST 'conus13km_restart_intel' [03:39, 01:43](1331 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:34] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:31, 04:13](1132 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:53] ( 797 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:49](1220 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:18, 04:43](1224 MB) +PASS -- TEST 'conus13km_debug_intel' [25:41, 22:43](1506 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:40, 22:57](1230 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:35, 19:42](1341 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:36, 22:48](1532 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:35, 22:23](1581 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:02] ( 797 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:54](1284 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 11:01] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:43, 03:47](912 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:23, 05:17](1101 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 03:36](1168 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:49, 06:13](945 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:45, 29:32](968 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:36, 05:14](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:39, 05:59](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:29, 02:33](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 06:30](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:32, 03:30](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:31, 03:20](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:34, 03:46](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:05](406 MB) +PASS -- TEST 'gnv1_nested_intel' [06:56, 03:36](1855 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:20] ( 1504 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:39, 12:31](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:02] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:41, 15:11](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:42, 15:08](674 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:14] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:18, 10:34](669 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:03] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:41, 05:50](938 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:45, 05:56](921 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:03, 16:16](1302 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:07] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:54](2009 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 01:58](1953 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:45](1263 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:47](1266 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:49](1268 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:01](2010 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:03](2012 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:45](1262 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:35, 07:04](1784 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:40](1162 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 03:01](2006 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:53](4967 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:51](4965 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:45] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:51](1913 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:06] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:59](2008 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:53](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:33](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:27](309 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:12] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:32](636 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:28, 00:17](510 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:21] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:50, 03:42](2093 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 09:00] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 04:43](2106 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:42] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:44, 03:15](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:35, 01:50](1129 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:52] ( 912 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:46, 04:49](1878 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:18] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 01:57](2036 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 08:50] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:42, 04:15](2115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:34, 04:54](1881 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:36, 05:00](1897 MB) + +PASS -- COMPILE 'atmaq_intel' [10:11, 08:35] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [17:36, 15:04](2920 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [21:15, 18:21](2931 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:02] ( 881 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:09, 39:13](2937 MB) PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:32] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:19](1180 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 03:53] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:29, 04:11](1120 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [06:11, 04:17] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:30, 04:37](1124 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:18] -PASS -- TEST 'control_c48_gnu' [11:25, 09:26](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:52](604 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:49](611 MB) -PASS -- TEST 'control_p8_gnu' [06:41, 04:20](1552 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:43, 04:16](1550 MB) -PASS -- TEST 'control_flake_gnu' [07:22, 05:28](657 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:50] -PASS -- TEST 'rap_control_gnu' [07:31, 05:58](950 MB) -PASS -- TEST 'rap_decomp_gnu' [07:29, 06:02](950 MB) -PASS -- TEST 'rap_2threads_gnu' [08:32, 06:58](1019 MB) -PASS -- TEST 'rap_restart_gnu' [04:32, 03:02](681 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:30, 05:53](945 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:31, 06:00](944 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:31, 03:02](688 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:47](952 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:47](939 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:29, 06:36](1011 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:26, 05:42](952 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 03:00](690 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:57](771 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:58](940 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:44] -PASS -- TEST 'control_csawmg_gnu' [10:29, 08:20](851 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:40] -PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:31](1381 MB) -PASS -- TEST 'regional_debug_gnu' [10:32, 08:25](884 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:34](962 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:29](965 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:32](970 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:34](972 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:47](1049 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 04:04](955 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:42](962 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:34](604 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:39](594 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:36](1547 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:37](960 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:32](963 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:23](973 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:57] -PASS -- TEST 'control_wam_debug_gnu' [08:38, 06:19](1401 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:00] -PASS -- TEST 'control_csawmg_debug_gnu' [04:30, 02:24](844 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:06](800 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 05:01](805 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:28, 06:05](850 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:25, 05:54](848 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:08](802 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:38](651 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:37](658 MB) -PASS -- TEST 'conus13km_control_gnu' [06:49, 04:50](1025 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:39, 02:03](1018 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:40, 04:54](1030 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:46, 02:44](730 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:51] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:43](827 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:57] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:29](806 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:24](814 MB) -PASS -- TEST 'conus13km_debug_gnu' [13:38, 11:08](1047 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [12:39, 10:41](771 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:34, 09:03](1030 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:34, 11:17](1049 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:35, 11:17](1111 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](833 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:51] -PASS -- TEST 'cpld_control_p8_gnu' [13:04, 10:54](1693 MB) - -PASS -- COMPILE 's2s_gnu' [17:12, 16:04] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:51, 09:56](1640 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:12, 02:45] -PASS -- TEST 'cpld_debug_p8_gnu' [08:55, 06:59](1693 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:24] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:51, 17:41](1619 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:35] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:50, 11:02](1548 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:51] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:18, 03:30](1555 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:09] -PASS -- TEST 'control_gfs_mpas_gnu' [02:29, 00:49](6350 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 08:47] ( 1 warnings 404 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:31, 01:25](1170 MB) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:29](1186 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:28, 04:10](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:12, 04:04] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:29, 04:41](1126 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:11] +PASS -- TEST 'control_c48_gnu' [11:23, 09:26](1540 MB) +PASS -- TEST 'control_stochy_gnu' [04:17, 02:50](606 MB) +PASS -- TEST 'control_ras_gnu' [06:18, 04:43](613 MB) +PASS -- TEST 'control_p8_gnu' [06:46, 04:23](1541 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:41, 04:12](1550 MB) +PASS -- TEST 'control_flake_gnu' [07:20, 05:24](654 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 03:57] +PASS -- TEST 'rap_control_gnu' [07:31, 05:53](947 MB) +PASS -- TEST 'rap_decomp_gnu' [08:28, 05:54](949 MB) +PASS -- TEST 'rap_2threads_gnu' [10:30, 06:54](1024 MB) +PASS -- TEST 'rap_restart_gnu' [05:31, 03:08](677 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:29, 05:52](942 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:26, 05:58](949 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [05:32, 03:03](684 MB) +PASS -- TEST 'hrrr_control_gnu' [08:27, 05:44](950 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [09:31, 05:42](936 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [09:26, 06:36](1010 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:29, 05:45](950 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:19, 02:57](686 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:21, 02:58](773 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:33, 10:57](939 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:33] +PASS -- TEST 'control_csawmg_gnu' [10:31, 08:25](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:49] +PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:31](1378 MB) +PASS -- TEST 'regional_debug_gnu' [10:33, 08:30](882 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:37](959 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:26](961 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:37](962 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 02:32](965 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:27, 02:44](1045 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:05](952 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:18, 02:31](958 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:32](602 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:41](596 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:37](1552 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:30](960 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:36](956 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:20](972 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:00] +PASS -- TEST 'control_wam_debug_gnu' [09:38, 06:21](1403 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:44] +PASS -- TEST 'control_csawmg_debug_gnu' [04:30, 02:18](836 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:58] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:31, 05:02](797 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:27, 05:01](802 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:27, 06:03](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:24, 05:53](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:25, 05:09](800 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:26, 02:41](648 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:19, 02:39](657 MB) +PASS -- TEST 'conus13km_control_gnu' [06:49, 04:51](1027 MB) +PASS -- TEST 'conus13km_2threads_gnu' [04:40, 02:05](1015 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:40, 04:53](1031 MB) +PASS -- TEST 'conus13km_restart_gnu' [06:37, 02:42](732 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:57] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:44](829 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:27](807 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:28](815 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:38, 10:42](1045 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [13:40, 11:08](771 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:39, 08:56](1033 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:37, 11:21](1047 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:34, 11:12](1137 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:51] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](836 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:24] +PASS -- TEST 'cpld_control_p8_gnu' [15:02, 11:05](1690 MB) + +PASS -- COMPILE 's2s_gnu' [17:11, 16:00] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [32:51, 09:52](1628 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:45] +PASS -- TEST 'cpld_debug_p8_gnu' [11:52, 06:59](1685 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:03] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:46, 17:48](1619 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:48] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:45, 10:59](1548 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:49] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:25](1558 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:08] +PASS -- TEST 'control_gfs_mpas_gnu' [03:27, 00:38](6355 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:11, 08:39] ( 1 warnings 404 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:32, 01:24](1168 MB) SYNOPSIS: -Starting Date/Time: 20251020 15:55:59 -Ending Date/Time: 20251020 17:50:14 -Total Time: 01h:54m:55s +Starting Date/Time: 20251022 05:10:29 +Ending Date/Time: 20251022 07:14:07 +Total Time: 02h:04m:02s Compiles Completed: 65/65 Tests Completed: 278/278 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index eee0a4b6ed..1e83e70a64 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: -7251e7c3c570611c1677989c8ae6029a48f6adb3 +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,417 +40,419 @@ 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-20251017 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1323183 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2544187 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:25] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:19, 15:46](2169 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:12, 16:01] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 08:00](2166 MB) FAILED: TEST TIMED OUT -- TEST 'cpld_control_gefs_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [39:11, 23:03](3165 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:20] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 17:11](2031 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:42, 18:18](2345 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:31, 06:42](1350 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:49, 07:58](2217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:17, 18:15](1931 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:32] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:40, 17:54](1997 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:50] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:27, 18:23](1997 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:42] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:19, 09:36](2270 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:16, 28:57](2269 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:43, 04:25](1963 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:11, 08:23](2291 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 04:37](1843 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:13, 25:40](2388 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:11, 13:22](2248 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:20, 06:54](2128 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:21, 13:39](2271 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:00, 15:29](2940 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:43, 05:48](2970 MB) - -PASS -- COMPILE 's2swal_intel' [14:11, 12:12] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [11:34, 08:49](2229 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:46, 04:30](1930 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:09, 06:51](2229 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:54] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:13, 07:46](2052 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:55](2162 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:55] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:20, 17:32](2293 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:59] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:26](2084 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:13] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:47](2136 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 22:32] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 08:08](2265 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:15] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 18:01](2098 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:25, 06:50](1402 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:51](1990 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [07:38, 06:05](3049 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:39, 01:54](3046 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:42, 01:04](2476 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 01:00](2246 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:34](2242 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:31](1553 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:25, 00:58](2227 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:25, 00:33](2240 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:36, 00:27](1555 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:34](2166 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:25, 00:28](2172 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:29, 00:25](1504 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:08] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:34, 24:02](2064 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:48] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:58](724 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:07](1613 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:10](1621 MB) -PASS -- TEST 'control_latlon_intel' [03:21, 02:06](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:14](1622 MB) -PASS -- TEST 'control_c48_intel' [08:27, 06:33](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 05:55](841 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:27, 06:41](1715 MB) -PASS -- TEST 'control_c192_intel' [08:45, 06:21](1817 MB) -PASS -- TEST 'control_c384_intel' [10:23, 07:15](2033 MB) -PASS -- TEST 'control_c384gdas_intel' [11:20, 07:44](1520 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:26](685 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:54](542 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:19](678 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 03:00](671 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:29, 02:55](978 MB) -PASS -- TEST 'control_iovr5_intel' [06:22, 04:45](679 MB) -PASS -- TEST 'control_p8_intel' [05:09, 02:35](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:04](1906 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 04:02](1905 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:57, 02:30](1934 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:06, 02:33](1941 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:51, 01:45](2427 MB) -PASS -- TEST 'control_restart_p8_intel' [04:06, 01:46](1216 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:00, 03:33](1902 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:57, 01:31](1218 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:43, 02:34](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:36, 03:00](2003 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:29, 04:23](1905 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:03, 03:35](1979 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:53, 02:38](1914 MB) -PASS -- TEST 'merra2_thompson_intel' [04:54, 02:57](1926 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:49, 04:32](1919 MB) -PASS -- TEST 'regional_control_intel' [06:25, 04:31](1193 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:26](1204 MB) -PASS -- TEST 'regional_decomp_intel' [08:28, 06:36](1187 MB) -PASS -- TEST 'regional_2threads_intel' [05:22, 03:35](1098 MB) -PASS -- TEST 'regional_noquilt_intel' [06:29, 04:27](1503 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:33](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:28](1197 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 05:46](2104 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:11, 08:38] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:01, 03:28](1950 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 14:24] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [05:50, 03:35](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:22](1446 MB) -PASS -- TEST 'rap_decomp_intel' [05:33, 03:46](1072 MB) -PASS -- TEST 'rap_2threads_intel' [06:33, 04:19](1161 MB) -PASS -- TEST 'rap_restart_intel' [03:53, 01:57](1100 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:34, 04:29](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:48, 03:47](1064 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:55, 02:46](1087 MB) -PASS -- TEST 'hrrr_control_intel' [05:49, 03:26](1094 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:31](1061 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 04:00](1142 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:52](1062 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:26](1198 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:22, 09:17](2022 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:20, 09:18](2188 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:51] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:31, 05:27](1070 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:52](845 MB) - -PASS -- COMPILE 'wam_intel' [15:10, 13:17] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [11:37, 10:05](1685 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:12] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:50, 02:22](1907 MB) -PASS -- TEST 'regional_control_faster_intel' [06:24, 04:09](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:48] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:42](1641 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:56](1640 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:31](859 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:15](853 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:25](1160 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:22](860 MB) -PASS -- TEST 'control_diag_debug_intel' [04:25, 02:37](1702 MB) -PASS -- TEST 'control_debug_p8_intel' [05:38, 03:22](1940 MB) -PASS -- TEST 'regional_debug_intel' [16:26, 15:03](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [05:21, 04:06](1238 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:26, 07:22](1239 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:08](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:09](1240 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:15](1246 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:30, 09:17](1333 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 04:19](1248 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:21, 06:26](1249 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:10](1246 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:08](1247 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:05](1238 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:10](1249 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:20, 10:11](1246 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:21](1247 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:21](1250 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:33] ( 862 warnings 396 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 07:57] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:56, 09:48](1309 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:40, 04:15](1062 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:58, 03:55](1068 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 03:44](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:34](1053 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:56, 04:22](1004 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 02:09](999 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 02:05](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 13:45] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:56, 02:33](1522 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:18](1328 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:59](1542 MB) -PASS -- TEST 'conus13km_restart_intel' [03:43, 01:29](1285 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:11, 08:04] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:50](1117 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:28] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:57](1130 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:55](1121 MB) -PASS -- TEST 'conus13km_debug_intel' [20:40, 18:34](1557 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:38, 18:21](1166 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:32, 19:50](1374 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [20:33, 19:05](1593 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:37, 18:20](1637 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:29] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 04:17](1230 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:16] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:14](1033 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:08, 04:54](1226 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:21, 07:25](1287 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:03, 07:24](1110 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:47, 14:45](1133 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:04, 16:45](1141 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:44, 04:30](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:56, 05:25](612 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 04:14](430 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 06:11](540 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 04:12](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:06](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:01](664 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 00:54](455 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:11] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 10:55](673 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:10, 10:30] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:43, 17:54](751 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:48, 17:48](834 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:56] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 11:30](827 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:10, 17:30] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:44, 05:05](1093 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:42, 09:34](1077 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:23](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:19] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:25](1863 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:36](1809 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:16](1120 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:17](1120 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:18](1120 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:25](1864 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:25](1874 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:14](1118 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:56, 07:11](1723 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:53, 05:36](1202 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:24](1866 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:57](4832 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:55](4831 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:48] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:26](1779 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:00] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:23](1852 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 01:12](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:49](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:30](559 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:29] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:00, 06:48](2036 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 07:59] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:54, 10:53](2062 MB) - -PASS -- COMPILE 'atml_intel' [10:10, 08:56] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:02, 05:19](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 01:54](1200 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:16] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:55, 05:08](1910 MB) - -PASS -- COMPILE 'atmw_intel' [11:10, 09:52] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:46](1942 MB) - -PASS -- COMPILE 'atmaero_intel' [10:10, 08:09] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:47, 04:00](2009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:40, 05:59](1793 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:42, 09:44](1824 MB) - -PASS -- COMPILE 'atmaq_intel' [09:10, 07:55] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [27:18, 24:38](2945 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [20:12, 17:11](2941 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:27] ( 879 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:58, 41:13](2957 MB) - -PASS -- COMPILE 'atm_fbh_intel' [09:10, 07:33] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:22, 09:44](1084 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 03:51] -PASS -- TEST 'control_c48_gnu' [09:29, 07:43](1587 MB) -PASS -- TEST 'control_stochy_gnu' [04:20, 02:42](589 MB) -PASS -- TEST 'control_ras_gnu' [05:20, 03:42](593 MB) -PASS -- TEST 'control_p8_gnu' [05:57, 03:52](1539 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:40, 03:51](1555 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:12](641 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:30] -PASS -- TEST 'rap_control_gnu' [08:49, 06:40](942 MB) -PASS -- TEST 'rap_decomp_gnu' [08:51, 07:00](943 MB) -PASS -- TEST 'rap_2threads_gnu' [06:50, 04:43](1003 MB) -PASS -- TEST 'rap_restart_gnu' [04:51, 02:14](672 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:47, 05:36](938 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:48, 04:15](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:51, 02:13](678 MB) -PASS -- TEST 'hrrr_control_gnu' [05:46, 04:02](939 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:36, 04:00](922 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:31](999 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:49, 05:39](940 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:23, 03:16](672 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:26, 04:52](758 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:00, 07:58](937 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:31] -PASS -- TEST 'control_csawmg_gnu' [08:28, 06:40](839 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:44] -PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:17](1371 MB) -PASS -- TEST 'regional_debug_gnu' [08:28, 06:24](879 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:59](951 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:57](944 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 02:04](956 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:00](949 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:26, 02:06](1036 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:10](944 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 01:57](950 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:16](583 MB) -PASS -- TEST 'control_stochy_debug_gnu' [05:18, 03:19](578 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:37, 02:22](1532 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:46](949 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:07](955 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:52, 03:27](954 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:40] -PASS -- TEST 'control_wam_debug_gnu' [07:38, 05:09](1391 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:02] -PASS -- TEST 'control_csawmg_debug_gnu' [04:28, 02:56](824 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:40] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 06:21](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [10:57, 09:04](796 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:49, 03:45](842 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:53, 03:52](836 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:31](792 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [05:53, 03:25](647 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:30](644 MB) -PASS -- TEST 'conus13km_control_gnu' [05:56, 03:56](1033 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:43, 01:51](1020 MB) -PASS -- TEST 'conus13km_decomp_gnu' [05:39, 03:59](1038 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:16](766 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:14] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:26](820 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 05:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:19, 02:05](803 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 01:57](798 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:38, 08:51](1052 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [20:37, 19:01](779 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [18:36, 16:33](1035 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:30, 09:08](1056 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [14:30, 12:40](1118 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:08](830 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 17:03] -PASS -- TEST 'cpld_control_p8_gnu' [13:27, 10:45](1722 MB) - -PASS -- COMPILE 's2s_gnu' [19:11, 17:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:07, 08:36](1637 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:16] -PASS -- TEST 'cpld_debug_p8_gnu' [09:03, 06:27](1742 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:10, 17:13] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [29:57, 27:40](1601 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 02:06] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:57, 09:46](1605 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 16:54] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:44](1605 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:10, 02:51] -PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:35](6401 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [39:07, 25:49](3153 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 24:31] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:24, 17:43](2034 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:42, 18:20](2334 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:39, 06:44](1359 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:42, 07:59](2223 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 18:48](1927 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:50] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:48, 18:04](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:24] ( 1559 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:24, 17:10](1994 MB) + +PASS -- COMPILE 's2swa_intel' [19:12, 17:30] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:36, 12:02](2258 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 08:38](2271 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:34, 05:33](1957 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:05, 08:35](2280 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 04:31](1840 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:03, 09:02](2390 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:12, 12:23](2251 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:08, 07:01](2135 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:20, 18:10](2268 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:55, 16:41](2940 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:47, 12:42](2976 MB) + +PASS -- COMPILE 's2swal_intel' [13:12, 11:43] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [11:16, 08:29](2232 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [16:29, 13:45](1937 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:08, 06:52](2240 MB) + +PASS -- COMPILE 's2sw_intel' [17:12, 15:49] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:46](2045 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:10, 07:16](2164 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:12, 07:25] ( 1449 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:06, 20:29](2297 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:17] ( 1449 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:29](2081 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:10] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:09, 14:11](2133 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 14:18] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:12, 07:56](2263 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 23:16] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 15:19](2098 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:26, 06:46](1415 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:01, 15:43](1995 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:45, 07:26](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:49, 01:50](3041 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:49, 01:07](2477 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:32, 00:58](2228 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:35, 00:33](2246 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:26](1555 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:34, 00:58](2233 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:30, 00:34](2233 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:38, 00:26](1557 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:30, 00:34](2158 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:34, 00:45](2167 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:23](1506 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:27] ( 1559 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:13, 23:43](2068 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:09] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:05](722 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:10](1609 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:22](1625 MB) +PASS -- TEST 'control_latlon_intel' [04:27, 02:13](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:23](1624 MB) +PASS -- TEST 'control_c48_intel' [08:31, 06:38](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:30, 06:01](842 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:30, 06:45](1726 MB) +PASS -- TEST 'control_c192_intel' [09:43, 06:56](1817 MB) +PASS -- TEST 'control_c384_intel' [10:20, 08:02](2036 MB) +PASS -- TEST 'control_c384gdas_intel' [16:20, 13:02](1510 MB) +PASS -- TEST 'control_stochy_intel' [05:23, 02:55](679 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 00:53](560 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:25](682 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:17](678 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:28, 02:35](976 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:14](674 MB) +PASS -- TEST 'control_p8_intel' [07:09, 03:49](1902 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 02:51](1917 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 02:47](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:53, 02:32](1924 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:07, 02:44](1943 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:48, 02:59](2429 MB) +PASS -- TEST 'control_restart_p8_intel' [05:06, 02:16](1210 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:57, 05:11](1904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:31](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:43](1900 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:58](1989 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:46](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:45](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:54, 05:06](1914 MB) +PASS -- TEST 'merra2_thompson_intel' [04:56, 03:06](1925 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:52, 06:31](1929 MB) +PASS -- TEST 'regional_control_intel' [07:28, 05:38](1199 MB) +PASS -- TEST 'regional_restart_intel' [04:30, 03:03](1206 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 06:08](1184 MB) +PASS -- TEST 'regional_2threads_intel' [08:31, 05:27](1090 MB) +PASS -- TEST 'regional_noquilt_intel' [09:37, 06:39](1502 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 05:46](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:26, 05:44](1203 MB) +PASS -- TEST 'regional_wofs_intel' [07:26, 05:46](2084 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:11, 08:40] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:06, 03:28](1951 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:13] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [09:54, 07:49](1097 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 03:24](1435 MB) +PASS -- TEST 'rap_decomp_intel' [05:54, 03:48](1055 MB) +PASS -- TEST 'rap_2threads_intel' [06:54, 04:15](1165 MB) +PASS -- TEST 'rap_restart_intel' [03:57, 01:59](1093 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:44, 03:37](1086 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:40, 03:44](1051 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:04, 03:57](1071 MB) +PASS -- TEST 'hrrr_control_intel' [05:54, 03:30](1112 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:29](1060 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:39, 04:01](1135 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:00](1039 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:03, 06:31](1199 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:23, 10:12](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 10:27](2202 MB) + +PASS -- COMPILE 'csawmg_intel' [09:11, 07:35] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:32, 05:43](1074 MB) +PASS -- TEST 'control_ras_intel' [04:21, 02:55](852 MB) + +PASS -- COMPILE 'wam_intel' [09:11, 07:31] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [11:38, 10:04](1684 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:35] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:55, 02:50](1916 MB) +PASS -- TEST 'regional_control_faster_intel' [06:28, 04:17](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:55] ( 907 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 01:57](1639 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:25, 04:17](1646 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:19, 02:35](860 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:30](859 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:25](1163 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:30](863 MB) +PASS -- TEST 'control_diag_debug_intel' [04:25, 02:25](1719 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:16](1943 MB) +PASS -- TEST 'regional_debug_intel' [17:34, 15:35](1157 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:09](1244 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:21](1246 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:08](1242 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:13](1247 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:17](1252 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:30, 04:31](1325 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:59](1243 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:21](1240 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:23](1246 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:15](1243 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:18](1251 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:11](1235 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:21, 15:56](1240 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:23, 09:21](1249 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:09](1247 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 03:41] ( 864 warnings 396 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:36] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:50, 05:07](1315 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:51, 02:59](1046 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:52](1049 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 03:45](1077 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:35](1066 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 03:01](990 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:51, 01:37](976 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:38](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:11] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:54, 02:30](1515 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:11](1330 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:32](1541 MB) +PASS -- TEST 'conus13km_restart_intel' [04:41, 01:37](1275 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:32] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:45](1120 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:37] ( 797 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:32](1121 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:26](1127 MB) +PASS -- TEST 'conus13km_debug_intel' [21:46, 19:25](1561 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:32, 19:25](1166 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:32, 19:55](1374 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [21:31, 20:02](1589 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:29, 19:47](1629 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:27] ( 797 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:03](1218 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:52] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:40, 04:31](1035 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:10, 05:25](1225 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:26, 04:00](1295 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:52, 10:13](1091 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:48, 23:58](1121 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:02, 20:05](1138 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:44, 04:37](594 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 05:21](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:37, 02:23](429 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 05:47](506 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 03:05](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:49, 03:30](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:46, 04:15](666 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:18](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 02:39] ( 1504 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:42, 10:41](636 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:16] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:42, 17:06](728 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:46, 17:51](829 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:41] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:32, 11:35](834 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:11, 17:37] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:41, 05:01](1094 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:45, 05:08](1080 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:33](1342 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:34] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:25](1867 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](1819 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:15](1122 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:15](1110 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:14](1123 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:25](1862 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:23](1867 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:15](1113 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:52, 05:47](1715 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:53, 06:54](1206 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:23](1869 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:51](4837 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:53](4830 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 05:02] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 09:30](1775 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 09:26] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:22](1859 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:59](333 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:39](556 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:29](555 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:06] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:59, 03:14](2042 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:54] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 04:13](2053 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:07] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:07, 02:57](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 01:38](1205 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:58] ( 912 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:53, 04:01](1920 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:26] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 01:41](1949 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:14] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:48, 08:14](2019 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:41, 07:18](1789 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:55](1822 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 10:07] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [16:23, 13:28](2948 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:20, 15:59](2947 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:25] ( 881 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:11, 32:14](2959 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 10:06] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:26, 09:30](1083 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:31] +PASS -- TEST 'control_c48_gnu' [09:31, 07:50](1583 MB) +PASS -- TEST 'control_stochy_gnu' [04:24, 02:53](589 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 03:47](604 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 03:29](1544 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:20](1561 MB) +PASS -- TEST 'control_flake_gnu' [06:23, 04:23](637 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 03:37] +PASS -- TEST 'rap_control_gnu' [07:48, 05:50](944 MB) +PASS -- TEST 'rap_decomp_gnu' [09:43, 07:21](943 MB) +PASS -- TEST 'rap_2threads_gnu' [08:47, 05:48](1001 MB) +PASS -- TEST 'rap_restart_gnu' [06:00, 04:09](673 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [16:48, 13:45](941 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 05:45](940 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:43, 03:03](681 MB) +PASS -- TEST 'hrrr_control_gnu' [05:48, 04:04](940 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:43](926 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 03:30](1000 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:40, 04:04](943 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:34, 02:10](673 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:05](757 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:58, 07:36](933 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:34] +PASS -- TEST 'control_csawmg_gnu' [15:25, 14:05](839 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:12, 10:21] +PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:11](1366 MB) +PASS -- TEST 'regional_debug_gnu' [17:38, 15:34](881 MB) +PASS -- TEST 'rap_control_debug_gnu' [06:30, 04:30](949 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [06:29, 04:37](945 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:17](949 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [06:19, 04:30](951 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:25, 02:05](1034 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 03:06](942 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 01:58](948 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:19, 02:33](583 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:20](578 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:59, 01:23](1535 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:29, 02:00](953 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:03](953 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:52, 03:19](955 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:29] +PASS -- TEST 'control_wam_debug_gnu' [07:38, 05:31](1389 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:36] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:55](822 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:51] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:43, 03:52](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [14:55, 12:44](794 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:35, 03:27](845 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:56, 04:53](832 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [10:48, 08:51](794 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:47, 02:03](643 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:03](647 MB) +PASS -- TEST 'conus13km_control_gnu' [05:52, 03:52](1033 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:52](1017 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:34, 03:59](1039 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:38, 02:08](763 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](823 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:19, 01:58](804 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 01:53](802 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:31, 08:43](1050 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:33, 08:49](777 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:29, 08:29](1034 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [10:29, 08:47](1057 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:27, 08:40](1120 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:22] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:05](828 MB) + +PASS -- COMPILE 's2swa_gnu' [27:11, 26:05] +PASS -- TEST 'cpld_control_p8_gnu' [12:23, 09:53](1732 MB) + +PASS -- COMPILE 's2s_gnu' [18:11, 16:46] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:59, 08:55](1616 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:00] +PASS -- TEST 'cpld_debug_p8_gnu' [14:58, 13:04](1732 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 14:58] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:16](1591 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:30] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:53, 09:59](1611 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:37] +FAILED: RUN DID NOT COMPLETE -- TEST 'datm_cdeps_control_cfsr_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [08:11, 02:45] +PASS -- TEST 'control_gfs_mpas_gnu' [02:20, 00:35](6401 MB) SYNOPSIS: -Starting Date/Time: 20251020 09:05:47 -Ending Date/Time: 20251020 11:02:42 -Total Time: 01h:58m:15s +Starting Date/Time: 20251021 21:57:58 +Ending Date/Time: 20251021 23:52:43 +Total Time: 01h:55m:45s Compiles Completed: 61/61 -Tests Completed: 269/271 +Tests Completed: 268/271 Failed Tests: * TEST cpld_control_gefs_intel: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1323183/cpld_control_gefs_intel/err +-- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2544187/cpld_control_gefs_intel/err * TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST -- LOG: N/A +* TEST datm_cdeps_control_cfsr_gnu: FAILED: RUN DID NOT COMPLETE +-- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/2932/tests/logs/log_hercules/run_datm_cdeps_control_cfsr_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -463,10 +465,10 @@ Result: FAILURE ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -d897bb57e6fa3d94a101b637faa7be2d00f2c478 +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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) @@ -477,18 +479,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -502,22 +504,99 @@ 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-20251017 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2636503 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3658562 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rerun.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:36] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [44:46, 28:24](3130 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [29:28, 09:13](2822 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 10:42] ( 1 warnings 1045 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_gefs_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:03] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:45](1606 MB) + +SYNOPSIS: +Starting Date/Time: 20251022 02:06:12 +Ending Date/Time: 20251022 03:24:45 +Total Time: 01h:18m:51s +Compiles Completed: 2/2 +Tests Completed: 1/3 +Failed Tests: +* TEST cpld_control_gefs_intel: FAILED: TEST TIMED OUT +-- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3658562/cpld_control_gefs_intel/err +* TEST cpld_restart_gefs_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: +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 + +Submodule hashes used in testing: + 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) + 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) + 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) + 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-20251021 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2062959 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rerun.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:53] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [29:18, 17:47](3133 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:05, 05:08](2825 MB) SYNOPSIS: -Starting Date/Time: 20251020 12:35:33 -Ending Date/Time: 20251020 14:04:24 -Total Time: 01h:29m:13s +Starting Date/Time: 20251023 23:04:01 +Ending Date/Time: 20251024 00:07:00 +Total Time: 01h:03m:17s Compiles Completed: 1/1 Tests Completed: 2/2 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 6f5677db73..c469e76591 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: -7251e7c3c570611c1677989c8ae6029a48f6adb3 +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,320 +40,320 @@ 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-20251017 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_294579 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3517681 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:18, 16:28] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:02, 16:44](2109 MB) -PASS -- TEST 'cpld_control_gefs_intel' [38:01, 20:24](3067 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [26:35, 07:14](2737 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [41:25, 21:36](3081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:19, 24:35] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:21, 19:41](1971 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:18, 21:33](2144 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:34, 08:10](1234 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:37, 10:14](2093 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:23, 24:06](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:19, 24:37] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:00, 20:18](1957 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:18, 06:28] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:23, 22:58](1950 MB) - -PASS -- COMPILE 's2swa_intel' [17:18, 15:34] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:37, 17:44](2189 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:00, 16:51](2197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:25, 08:09](1781 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:04, 16:36](2217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:02, 09:38](1767 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 13:04](2303 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:04, 16:23](2173 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:03, 14:31](2059 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:38](2194 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:26, 16:25](2670 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:59, 10:14](2828 MB) - -PASS -- COMPILE 's2swal_intel' [18:18, 16:46] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [21:05, 17:39](2137 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:29, 09:06](1753 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:42, 08:51](2158 MB) - -PASS -- COMPILE 's2sw_intel' [16:18, 14:43] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:41, 16:16](2007 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 07:08](2089 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:18, 06:29] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:47, 14:33](2215 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:18, 06:06] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:29, 07:54](2033 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:18, 13:12] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:34](2078 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:03] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:08, 17:39](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 22:27] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:47, 17:39](2032 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:22, 08:11](1241 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:50, 20:43](1943 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:08, 08:15](3055 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:09, 02:34](3041 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:16, 01:29](2471 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:43, 01:28](2233 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:49](2233 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:45, 00:38](1549 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:35, 01:24](2227 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:35, 00:48](2244 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:46, 01:29](1554 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:34, 00:50](2166 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:47, 00:40](2159 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:49, 00:32](1506 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:28] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:49, 28:46](2009 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:03] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:47](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:38](1594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:50](1606 MB) -PASS -- TEST 'control_latlon_intel' [04:25, 02:46](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:49](1595 MB) -PASS -- TEST 'control_c48_intel' [10:37, 09:09](1714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:17](846 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:37, 09:21](1713 MB) -PASS -- TEST 'control_c192_intel' [10:55, 08:16](1798 MB) -PASS -- TEST 'control_c384_intel' [12:52, 09:51](1989 MB) -PASS -- TEST 'control_c384gdas_intel' [15:54, 10:42](1336 MB) -PASS -- TEST 'control_stochy_intel' [03:30, 01:48](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:07](488 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:43](657 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:46](657 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:49, 03:15](948 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 02:44](657 MB) -PASS -- TEST 'control_p8_intel' [06:47, 03:12](1874 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:36, 04:26](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 04:00](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:40, 04:19](1911 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:59, 04:29](1918 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:21, 02:12](2409 MB) -PASS -- TEST 'control_restart_p8_intel' [05:15, 02:03](1135 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:09](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:53](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:43, 03:12](1882 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:18, 03:44](1973 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:31](1895 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:29, 04:49](1942 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:21](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [06:53, 03:45](1895 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:41, 05:25](1898 MB) -PASS -- TEST 'regional_control_intel' [08:44, 06:22](1083 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 03:24](1104 MB) -PASS -- TEST 'regional_decomp_intel' [08:50, 06:42](1064 MB) -PASS -- TEST 'regional_2threads_intel' [06:52, 04:26](1037 MB) -PASS -- TEST 'regional_noquilt_intel' [08:57, 06:21](1372 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:21](1086 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:41, 06:21](1084 MB) -PASS -- TEST 'regional_wofs_intel' [09:47, 07:50](1907 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:21] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:36, 04:49](1916 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:30] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [07:39, 04:32](1041 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:07](1353 MB) -PASS -- TEST 'rap_decomp_intel' [07:08, 04:40](1034 MB) -PASS -- TEST 'rap_2threads_intel' [08:35, 05:18](1118 MB) -PASS -- TEST 'rap_restart_intel' [05:45, 02:29](1007 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:25, 04:29](1044 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:25, 04:38](1031 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 02:27](1006 MB) -PASS -- TEST 'hrrr_control_intel' [07:17, 04:20](1036 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:25](1038 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:14, 04:59](1108 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:45, 02:24](971 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:35, 08:13](1040 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:45](1989 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:21](2013 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 11:52] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:45, 06:25](1045 MB) -PASS -- TEST 'control_ras_intel' [05:28, 03:30](741 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 11:51] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [14:59, 12:55](1679 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:02] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:39, 03:09](1883 MB) -PASS -- TEST 'regional_control_faster_intel' [07:47, 06:05](1089 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:44] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:16](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:30, 02:19](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:01](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:46](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:22](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:45](838 MB) -PASS -- TEST 'control_diag_debug_intel' [04:38, 02:47](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [06:57, 04:10](1910 MB) -PASS -- TEST 'regional_debug_intel' [19:46, 18:04](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 04:55](1225 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:54](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:56](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:58](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:50, 05:13](1315 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:57](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:01](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:32, 04:58](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:30, 04:53](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:53](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:59](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:57](1208 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 04:54](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:12](1215 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:42] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:59, 13:33](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:01] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 04:50](1230 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:22, 03:55](940 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:47](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 04:35](987 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:08, 04:26](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 03:54](909 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 02:10](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:07](875 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:00] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:16, 03:46](1328 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:32](1232 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:57, 03:48](1355 MB) -PASS -- TEST 'conus13km_restart_intel' [04:59, 02:11](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:12] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:54, 04:33](1010 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:32] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 04:54](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:39](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [24:50, 22:23](1360 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:48, 22:17](1063 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:46, 21:38](1264 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:45, 22:58](1399 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:50, 22:51](1439 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:36] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:53](1185 MB) - -PASS -- COMPILE 'hafsw_intel' [16:10, 14:26] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:54, 04:37](908 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:34, 05:52](1099 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:34, 04:27](1220 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:05, 06:21](971 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:08, 29:12](996 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:29, 33:53](1026 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 06:32](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 07:27](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 08:07](417 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:21](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:57, 04:09](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 05:06](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:24](395 MB) -PASS -- TEST 'gnv1_nested_intel' [06:55, 03:54](1736 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:34] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:18](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:41] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:56, 15:06](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:03, 15:09](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 13:41] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:13, 11:08](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:13] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:07, 06:36](968 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:06, 06:37](954 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:05, 16:13](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:47] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1875 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:25](1814 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 03:06](1122 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:08](1126 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 03:09](1124 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:30](1873 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:30](1866 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:07](1136 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:34, 07:38](1657 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:48, 07:13](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:29](1867 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 06:07](4831 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:56](4836 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 07:02](1779 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 09:23] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:31](1870 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:22](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:50](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 00:33](315 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:34] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:40](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:23](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:53] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:29, 04:58](1989 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:40] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:19, 05:44](1985 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:07] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:34, 04:03](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:28](1090 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:48] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:34, 06:32](1890 MB) - -PASS -- COMPILE 'atmw_intel' [14:10, 13:00] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:07](1916 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:45] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:17, 05:12](1979 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:09, 05:28](1770 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 05:27](1788 MB) - -PASS -- COMPILE 'atmaq_intel' [13:11, 12:03] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:07, 18:55](2915 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:13, 22:24](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:53] ( 879 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:14, 40:00](2934 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:20] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 13:28](1086 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [14:11, 12:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [07:21, 05:07](573 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:12] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:36, 16:03](2106 MB) +PASS -- TEST 'cpld_control_gefs_intel' [34:17, 19:22](3061 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [22:39, 05:50](2732 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [34:45, 20:12](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:04] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:07, 19:40](1976 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:47, 21:21](2140 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:36, 08:08](1218 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:10, 09:17](2094 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:15, 23:39](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:30] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:59, 19:45](1952 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:22] ( 1559 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:48, 21:51](1955 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:38] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:52, 16:39](2195 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:46, 16:09](2185 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:54, 08:13](1781 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:21, 16:03](2203 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:04, 08:02](1773 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:27, 12:31](2295 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:21, 16:10](2176 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:20, 13:59](2063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:38, 16:04](2186 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:36, 15:51](2676 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:04, 08:07](2831 MB) + +PASS -- COMPILE 's2swal_intel' [18:11, 17:08] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [20:51, 17:12](2151 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:06, 08:15](1750 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 08:18](2155 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:25] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:09, 15:48](2000 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 07:08](2092 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:18] ( 1449 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:48, 13:14](2211 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:54] ( 1449 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:42](2033 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:02] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:31](2072 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:09] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:27, 15:53](2190 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:15] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:28, 17:39](2030 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:56, 08:10](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:20, 20:19](1938 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:06, 08:13](3053 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:04, 02:31](3036 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:59, 01:30](2477 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:43, 01:25](2238 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:42, 00:48](2240 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:37](1555 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:41, 01:24](2238 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:42, 00:48](2230 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:32, 00:37](1554 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:41, 00:49](2165 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:43, 00:42](2172 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:31, 00:32](1509 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:32] ( 1559 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:22, 28:10](2006 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:53] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:42](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 02:36](1597 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:48](1595 MB) +PASS -- TEST 'control_latlon_intel' [04:21, 02:45](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:45](1596 MB) +PASS -- TEST 'control_c48_intel' [10:32, 09:08](1723 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:37, 08:16](840 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:31, 09:20](1711 MB) +PASS -- TEST 'control_c192_intel' [10:45, 08:13](1798 MB) +PASS -- TEST 'control_c384_intel' [13:00, 09:52](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [15:34, 10:11](1346 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:49](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:10](485 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 01:43](655 MB) +PASS -- TEST 'control_iovr4_intel' [04:34, 02:43](655 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:38, 03:12](951 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:44](657 MB) +PASS -- TEST 'control_p8_intel' [06:29, 03:11](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 03:22](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 03:07](1895 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:20, 03:08](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:32, 03:15](1922 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:09, 02:10](2406 MB) +PASS -- TEST 'control_restart_p8_intel' [04:35, 01:51](1135 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:18, 03:09](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:41, 01:48](1131 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:09, 03:13](1871 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:40](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:29](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:16, 04:49](1955 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:19, 03:20](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [06:37, 03:46](1908 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:25, 05:16](1907 MB) +PASS -- TEST 'regional_control_intel' [08:34, 06:18](1078 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 03:23](1097 MB) +PASS -- TEST 'regional_decomp_intel' [08:39, 06:40](1074 MB) +PASS -- TEST 'regional_2threads_intel' [06:39, 04:27](1031 MB) +PASS -- TEST 'regional_noquilt_intel' [08:42, 06:16](1363 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:41, 06:19](1094 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:19](1086 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:48](1906 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:31] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:26, 04:46](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:32] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [07:21, 04:32](1041 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:14, 05:06](1359 MB) +PASS -- TEST 'rap_decomp_intel' [07:25, 04:38](1033 MB) +PASS -- TEST 'rap_2threads_intel' [08:26, 05:22](1119 MB) +PASS -- TEST 'rap_restart_intel' [05:40, 02:30](1008 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:26, 04:28](1042 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:00, 04:37](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:32, 02:28](997 MB) +PASS -- TEST 'hrrr_control_intel' [07:28, 04:19](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:24](1033 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:56, 05:00](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:47, 02:24](967 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:24, 08:14](1038 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:50](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:20](2014 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:10] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:40, 06:30](1044 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:31](740 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 11:47] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [14:54, 12:55](1681 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:10] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 03:10](1883 MB) +PASS -- TEST 'regional_control_faster_intel' [07:46, 06:04](1085 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:12] ( 907 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:14](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:17](1625 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 02:58](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:41](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:17](1146 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:42](838 MB) +PASS -- TEST 'control_diag_debug_intel' [04:33, 02:43](1689 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 02:39](1918 MB) +PASS -- TEST 'regional_debug_intel' [18:46, 16:40](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:57](1228 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:45](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:51](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:48](1219 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:09](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 05:01](1222 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:59](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:48](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:59](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:49](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:54](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:59](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 04:56](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:50](1216 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:32] ( 864 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:53, 12:58](1706 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:40] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:49](1238 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:15, 03:54](941 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:47](919 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 04:34](979 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:34, 04:24](992 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:55](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 02:10](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 02:07](886 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:47] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:07, 03:47](1330 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:30](1233 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:49](1359 MB) +PASS -- TEST 'conus13km_restart_intel' [03:45, 02:08](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:53] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:34](1011 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:22] ( 797 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:47](1102 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:43](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [24:51, 22:33](1357 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 22:38](1042 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:46, 21:38](1272 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:46, 22:45](1399 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:48, 22:53](1436 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:34] ( 797 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:03](1182 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:55] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:53, 04:38](905 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:21, 06:00](1094 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:26](1220 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:03, 06:23](970 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:57, 28:14](995 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:15, 34:09](1023 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:52, 06:33](487 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:54, 07:29](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:16](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 08:05](414 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 04:19](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 04:07](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:04](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:24](396 MB) +PASS -- TEST 'gnv1_nested_intel' [06:38, 03:54](1735 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:24] ( 1504 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 12:38](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:07] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:54, 15:12](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:04, 22:13](723 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:49] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:52, 11:03](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:45] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:50, 06:34](969 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:46, 06:32](951 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:12](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:42] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:27](1873 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:25](1812 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:06](1130 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 03:07](1128 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:08](1125 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:26](1860 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:26](1865 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 03:04](1130 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:16, 07:34](1665 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 07:16](1038 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:27](1868 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:19, 05:50](4820 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:18, 05:53](4833 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 03:40] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:25, 07:00](1776 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:22] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:25](1871 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:17](251 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:47](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:30](313 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:33] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:28, 00:37](569 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:20](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:38] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 03:54](1996 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:16] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:00, 04:59](1988 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:21] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:26, 03:41](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:07](1112 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:48] ( 912 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:22, 04:48](1893 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 13:02] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:07](1916 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:34] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:27](1984 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:03, 05:20](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 05:27](1790 MB) + +PASS -- COMPILE 'atmaq_intel' [13:11, 11:46] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:02, 18:21](2916 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [24:56, 22:06](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:36] ( 881 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:51, 39:22](2930 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:12, 11:22] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 13:54](1087 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [14:10, 13:08] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [06:56, 05:05](567 MB) SYNOPSIS: -Starting Date/Time: 20251020 09:05:50 -Ending Date/Time: 20251020 11:15:10 -Total Time: 02h:11m:07s +Starting Date/Time: 20251022 02:38:18 +Ending Date/Time: 20251022 04:44:29 +Total Time: 02h:07m:06s Compiles Completed: 46/46 Tests Completed: 211/211 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index a12f8227d8..8184d660e5 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: -d57861830f2d2cbfedc4584bbcf9818034ff37ec +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,442 +40,513 @@ 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-20251017 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134319 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1052390 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:48] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:52, 06:41](2193 MB) -PASS -- TEST 'cpld_control_gefs_intel' [38:16, 25:14](3252 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [17:21, 06:01](2953 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [48:43, 33:03](3443 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:10, 12:37] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 11:45](2063 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:52, 13:23](2642 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:52, 05:16](1512 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:57, 06:11](2365 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:41, 20:30](2001 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:10, 13:03] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:33, 13:09](1997 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:34] ( 1557 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:41, 13:14](2093 MB) - -PASS -- COMPILE 's2swa_intel' [10:10, 08:53] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:55, 07:26](2468 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:57, 06:55](2521 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:52, 04:01](2266 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:51, 06:51](2374 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:52, 03:52](1991 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:54, 15:28](2994 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:55, 07:09](2436 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:03, 11:46](2308 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:02](2474 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:37, 19:20](3604 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:38, 12:18](3498 MB) - -PASS -- COMPILE 's2swal_intel' [10:10, 08:48] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [09:57, 07:31](2498 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:55, 03:49](2314 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:28](3093 MB) - -PASS -- COMPILE 's2sw_intel' [10:10, 08:27] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 06:36](2075 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:52, 04:54](2986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:28] ( 1447 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:51, 09:14](2377 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:16] ( 1447 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 04:33](2106 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:32] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:51, 03:31](2165 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:26] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:53, 06:43](2472 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:17] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:46, 11:04](2156 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 05:27](1640 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:51, 15:31](2102 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:32, 08:22](3035 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:32, 01:28](3021 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:29, 00:53](2470 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:52](2215 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:31](2211 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:25, 01:47](1534 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:27, 00:51](2210 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:31](2208 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:26](1531 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2138 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:29](2138 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1489 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:13] ( 1557 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:53, 19:10](2181 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:27] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:16, 02:32](1346 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 01:38](2211 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 01:46](2228 MB) -PASS -- TEST 'control_latlon_intel' [04:17, 01:42](2224 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 01:43](2212 MB) -PASS -- TEST 'control_c48_intel' [07:18, 04:52](1669 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:34](806 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:17, 04:59](1671 MB) -PASS -- TEST 'control_c192_intel' [06:31, 05:08](1811 MB) -PASS -- TEST 'control_c384_intel' [09:07, 05:50](2088 MB) -PASS -- TEST 'control_c384gdas_intel' [10:25, 06:16](1954 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:13](1307 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:42](1199 MB) -PASS -- TEST 'control_lndp_intel' [03:15, 01:10](1318 MB) -PASS -- TEST 'control_iovr4_intel' [03:16, 01:44](1293 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:26, 02:24](1596 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 01:51](1305 MB) -PASS -- TEST 'control_p8_intel' [03:36, 02:09](2519 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:29](2536 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:07](2534 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:37, 02:06](2545 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:34, 02:13](2540 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:36, 10:25](2415 MB) -PASS -- TEST 'control_restart_p8_intel' [03:31, 01:26](1851 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:08](2509 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:20](1867 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:31, 02:15](2516 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:34, 01:47](2024 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:34](2534 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:35, 02:50](2592 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:14](2533 MB) -PASS -- TEST 'merra2_thompson_intel' [04:35, 02:41](2527 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:46](2542 MB) -PASS -- TEST 'regional_control_intel' [05:48, 03:35](1720 MB) -PASS -- TEST 'regional_restart_intel' [04:28, 02:17](1713 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 03:46](1724 MB) -PASS -- TEST 'regional_2threads_intel' [04:26, 02:16](1565 MB) -PASS -- TEST 'regional_noquilt_intel' [05:27, 03:35](1995 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:35](1727 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:35](1725 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 04:29](2665 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:14] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:53](2557 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 05:46] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [04:27, 03:06](1792 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 02:52](1633 MB) -PASS -- TEST 'rap_decomp_intel' [04:23, 02:52](1753 MB) -PASS -- TEST 'rap_2threads_intel' [04:24, 02:21](1181 MB) -PASS -- TEST 'rap_restart_intel' [03:29, 01:34](1762 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:28, 03:00](1790 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:23, 02:50](1734 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:38, 01:29](1761 MB) -PASS -- TEST 'hrrr_control_intel' [04:32, 02:40](1757 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 02:48](1730 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 02:10](1176 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:28](1706 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:55](1933 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:32](2667 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:38, 06:17](2892 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:21] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:40, 04:51](1770 MB) -PASS -- TEST 'control_ras_intel' [03:28, 02:19](1585 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:15] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [10:37, 08:19](2411 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:35] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:35, 02:11](2512 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 03:26](1723 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 03:46] ( 905 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:50](2242 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:52](2263 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:17, 05:50](1502 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:15](1481 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:52, 03:14](1790 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:02](1496 MB) -PASS -- TEST 'control_diag_debug_intel' [03:33, 02:04](2319 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:03](2542 MB) -PASS -- TEST 'regional_debug_intel' [14:30, 12:09](1638 MB) -PASS -- TEST 'rap_control_debug_intel' [05:29, 03:34](1881 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 03:37](1881 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 03:38](1875 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:33](1877 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1870 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:24, 03:42](1963 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:58](1876 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:29, 03:39](1868 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 03:54](1871 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 03:39](1870 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:33](1867 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:35](1867 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:42](1883 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:27, 03:33](1878 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:37](1869 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:29, 06:08](1876 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:18] ( 862 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:40, 08:58](2293 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:27] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 02:46](1489 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:25, 02:47](1750 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:18](1714 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:22, 01:56](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 01:55](1053 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:45, 02:23](1640 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:19](1660 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](1642 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:27] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:47, 02:09](1780 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:56](1789 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:43, 02:00](1810 MB) -PASS -- TEST 'conus13km_restart_intel' [07:40, 05:22](1581 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:43] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:56](1826 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:12] ( 795 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:28](1748 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:23](1745 MB) -PASS -- TEST 'conus13km_debug_intel' [18:44, 16:27](1843 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:02, 14:48](1458 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:20](1835 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:34, 14:44](1861 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:34, 15:19](1914 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:11] ( 795 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:28](1857 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:35] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:37, 02:38](1202 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:55, 04:03](1396 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:30, 02:29](1474 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:43, 04:18](1314 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:39, 32:08](1380 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:46, 23:26](1386 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:36, 03:15](795 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:35, 03:58](806 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:33, 01:34](538 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:22](603 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:21](752 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:33, 02:06](767 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:32, 02:37](803 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:46](514 MB) -PASS -- TEST 'gnv1_nested_intel' [04:48, 02:29](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:35] ( 1502 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:30, 08:06](720 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:33] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:39, 26:35](875 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:01, 27:00](1092 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:49] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:50, 06:49](2202 MB) +PASS -- TEST 'cpld_control_gefs_intel' [38:31, 21:47](3244 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [16:12, 05:49](2979 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [50:25, 33:04](3459 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 13:00] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 11:51](2059 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 13:12](2620 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:49, 05:15](1503 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:59, 06:02](2341 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:40, 20:30](1971 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:11, 13:20] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:31, 12:47](2013 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:02] ( 1559 warnings 2934 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:46, 13:24](2083 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:15] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:30](2519 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:56, 07:11](2502 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:51, 03:49](2279 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:53, 07:06](2366 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 03:53](2008 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:54, 15:35](3001 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 07:04](2474 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:46, 11:43](2288 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:57, 07:03](2488 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:49, 19:31](3614 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:06, 12:09](3489 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:50] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [10:56, 07:34](2479 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:58, 03:48](2296 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:30](3162 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:14] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:42, 06:26](2086 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:50, 04:52](2985 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:49] ( 1449 warnings 2184 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:55, 09:04](2413 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:58] ( 1449 warnings 2166 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 04:29](2115 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:28] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:22](2158 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:27] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:51, 06:40](2494 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:10, 12:43] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:40, 11:00](2172 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 05:25](1682 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:43, 15:25](2112 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [18:29, 17:09](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:30, 01:27](3018 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:31, 00:53](2471 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:52](2211 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:32](2213 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:26](1533 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:51](2210 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:33](2211 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:26](1531 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:34](2137 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:28](2139 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:24](1489 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:08] ( 1559 warnings 2916 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:41, 19:10](2199 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:26] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:18, 02:34](1340 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:20, 01:41](2221 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:21, 01:51](2232 MB) +PASS -- TEST 'control_latlon_intel' [06:19, 01:42](2222 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:21, 01:43](2244 MB) +PASS -- TEST 'control_c48_intel' [07:17, 04:55](1670 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 04:33](804 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:17, 04:50](1672 MB) +PASS -- TEST 'control_c192_intel' [09:30, 05:06](1826 MB) +PASS -- TEST 'control_c384_intel' [09:03, 05:49](2106 MB) +PASS -- TEST 'control_c384gdas_intel' [09:57, 06:12](1947 MB) +PASS -- TEST 'control_stochy_intel' [03:16, 01:22](1305 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:41](1229 MB) +PASS -- TEST 'control_lndp_intel' [03:16, 01:08](1312 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 01:46](1304 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:30, 02:12](1598 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 01:47](1294 MB) +PASS -- TEST 'control_p8_intel' [04:34, 02:07](2501 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:15](2523 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:08](2539 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:34, 02:08](2538 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:14](2562 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:38, 10:23](2401 MB) +PASS -- TEST 'control_restart_p8_intel' [03:31, 01:19](1841 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:23](2500 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:16](1855 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:31, 02:25](2519 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:31, 01:45](2025 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:41, 03:32](2525 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:42, 02:54](2591 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:35, 02:17](2518 MB) +PASS -- TEST 'merra2_thompson_intel' [04:33, 02:31](2540 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:24, 03:31](2549 MB) +PASS -- TEST 'regional_control_intel' [05:27, 03:37](1721 MB) +PASS -- TEST 'regional_restart_intel' [03:26, 02:02](1698 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 03:46](1714 MB) +PASS -- TEST 'regional_2threads_intel' [04:27, 02:12](1565 MB) +FAILED: TEST TIMED OUT -- TEST 'regional_noquilt_intel' [, ]( MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:35](1724 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:34](1714 MB) +PASS -- TEST 'regional_wofs_intel' [06:27, 04:29](2655 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:13] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:43](2573 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 05:49] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [04:27, 02:49](1812 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 02:49](1617 MB) +PASS -- TEST 'rap_decomp_intel' [04:23, 02:48](1714 MB) +PASS -- TEST 'rap_2threads_intel' [04:23, 02:18](1178 MB) +PASS -- TEST 'rap_restart_intel' [03:32, 01:32](1747 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:26, 02:45](1788 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:23, 02:53](1711 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:27, 01:31](1781 MB) +PASS -- TEST 'hrrr_control_intel' [04:26, 02:40](1777 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:44](1739 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:23, 02:11](1173 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:28](1734 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:57](1913 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:26](2663 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:17](2900 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:37] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:28, 04:27](1742 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:17](1595 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:39] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [09:33, 08:05](2404 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:45] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:35, 02:10](2525 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 03:24](1710 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:23] ( 907 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:36](2238 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:41](2260 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:15](1489 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:58](1482 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:41, 03:09](1798 MB) +PASS -- TEST 'control_ras_debug_intel' [04:16, 02:18](1494 MB) +PASS -- TEST 'control_diag_debug_intel' [03:41, 02:04](2333 MB) +PASS -- TEST 'control_debug_p8_intel' [03:28, 02:03](2551 MB) +PASS -- TEST 'regional_debug_intel' [13:36, 11:52](1642 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 03:31](1881 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:28](1874 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:37](1885 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:38](1879 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1876 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:47](1957 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:36](1874 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:38](1881 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:35](1879 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:29](1884 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:27](1868 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:37](1872 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 05:41](1872 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:38](1882 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:31](1868 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 05:59](1876 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:13] ( 864 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:53, 09:09](2317 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:34] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 02:38](1481 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:21, 02:21](1725 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:17](1701 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:24, 01:55](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 01:50](1053 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:23, 02:27](1679 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:18](1645 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:17](1635 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:10, 05:33] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:46, 14:07](1772 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:50](1809 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:38, 02:00](1815 MB) +PASS -- TEST 'conus13km_restart_intel' [08:36, 06:50](1563 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:40] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 02:52](1802 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:11] ( 797 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:25](1750 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:23](1757 MB) +PASS -- TEST 'conus13km_debug_intel' [16:38, 14:56](1847 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:37, 14:45](1468 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:26](1832 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:34, 14:25](1876 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:34, 14:59](1909 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 02:17] ( 797 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 03:46](1859 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 08:12] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:36, 02:36](1209 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:51, 04:14](1412 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:36](1468 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:41, 04:32](1317 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:37, 31:50](1343 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:15, 23:06](1385 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:15](801 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:33, 03:56](813 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:34](545 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:54, 04:18](619 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:30](757 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:08](765 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 02:38](806 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:47](529 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 02:33](1769 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:35] ( 1504 warnings 2058 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:09](743 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:10, 08:05] ( 1 warnings 661 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [32:31, 29:15](892 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:40, 27:41](1071 MB) PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:52] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 18:29](1097 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:18, 18:14](1106 MB) -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:48] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:53, 04:05](1286 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:38, 04:10](1283 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:44, 11:42](1808 MB) +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:45] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:34, 04:00](1311 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 04:01](1323 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:42, 11:36](1818 MB) -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:44] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:45](1951 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:17](1883 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:12](1198 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:56](1212 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:46](1193 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:15, 11:05](1944 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:57](1942 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:00](1192 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:02, 05:32](1827 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 05:28](1360 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:55](1948 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:16, 13:32](4788 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:07](4789 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:19] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:14](1840 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:23] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:56](1942 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](363 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:39](619 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:24](622 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:09] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:42, 02:39](2836 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:54] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:37, 03:26](2864 MB) - -PASS -- COMPILE 'atml_intel' [08:15, 06:26] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:37, 02:30](1924 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 01:26](1307 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:14, 03:30] ( 910 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:37, 03:32](1961 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 07:37] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:50](2697 MB) - -PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:41, 03:09](2020 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:32, 03:15](2395 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 03:20](2413 MB) - -PASS -- COMPILE 'atmaq_intel' [07:10, 05:29] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:29, 11:15](2877 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:13, 12:57](2877 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:30] ( 879 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:13, 26:45](2889 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:28] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:22, 06:34](1137 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:30] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:46, 11:45](2060 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [04:10, 02:57] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:45, 13:20](2087 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:11, 13:04] -PASS -- TEST 'cpld_control_sfs_intelllvm' [14:36, 12:39](1997 MB) - -PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:38] -PASS -- TEST 'cpld_control_p8_intelllvm' [10:00, 07:28](2515 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:15] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:25, 02:22](1718 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:21, 05:28] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:28, 02:54](1809 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:25, 07:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [06:36, 02:35](819 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:12, 02:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [11:28, 08:13](731 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:19, 01:52](1941 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:21] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:15, 04:42](1849 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:01] -PASS -- TEST 'control_c48_gnu' [07:18, 05:47](1512 MB) -PASS -- TEST 'control_stochy_gnu' [03:16, 01:59](515 MB) -PASS -- TEST 'control_ras_gnu' [04:17, 03:06](520 MB) -PASS -- TEST 'control_p8_gnu' [04:40, 03:07](1443 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 02:59](1488 MB) -PASS -- TEST 'control_flake_gnu' [06:19, 04:11](562 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:12, 02:52] -PASS -- TEST 'rap_control_gnu' [05:25, 03:26](852 MB) -PASS -- TEST 'rap_decomp_gnu' [05:25, 03:26](854 MB) -PASS -- TEST 'rap_2threads_gnu' [04:27, 02:39](911 MB) -PASS -- TEST 'rap_restart_gnu' [03:29, 01:53](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:27, 03:29](854 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:24, 03:26](854 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:29, 01:56](580 MB) -PASS -- TEST 'hrrr_control_gnu' [05:29, 03:20](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:23, 03:17](840 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:23, 02:33](900 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:23, 03:22](857 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 01:48](580 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 01:46](669 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:32, 06:10](850 MB) +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:12] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:03](1931 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:19, 07:53](1892 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:15, 13:23](1202 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 01:47](1191 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:15, 12:58](1208 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:16, 13:09](1945 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:15, 13:06](1951 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 01:53](1201 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:32](1838 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:56, 05:26](1371 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 13:17](1951 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [16:16, 14:38](4790 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:16, 15:33](4790 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:40] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 04:01](1843 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:14] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:01](1931 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:43] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:45](365 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:32](621 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:23](622 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:10, 06:07] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:40](2834 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:47] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:34, 03:37](2867 MB) + +PASS -- COMPILE 'atml_intel' [08:17, 06:34] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:34, 02:32](1920 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:29, 01:25](1311 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:17, 03:25] ( 912 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:42](1941 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 07:48] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:57](2700 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:45] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:39, 03:10](2016 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 03:35](2397 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:27](2421 MB) + +PASS -- COMPILE 'atmaq_intel' [07:10, 05:35] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:27, 11:22](2876 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:25, 13:08](2876 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:16] ( 881 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:14, 26:59](2887 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:26] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:42](1139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:21] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:46, 11:58](2053 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:35] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:41, 13:14](2082 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:12, 12:42] +PASS -- TEST 'cpld_control_sfs_intelllvm' [14:32, 12:38](2008 MB) + +PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:19] +PASS -- TEST 'cpld_control_p8_intelllvm' [09:54, 07:38](2468 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:34] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:24, 03:52](1813 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:13, 05:33] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:26, 02:50](1805 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:13, 08:06] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:35, 02:36](811 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [04:11, 02:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:27, 08:08](738 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:33] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:15, 01:59](1941 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:16] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [14:15, 12:44](1839 MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 03:00] +PASS -- TEST 'control_c48_gnu' [08:18, 06:19](1514 MB) +PASS -- TEST 'control_stochy_gnu' [03:16, 02:00](515 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 03:05](520 MB) +PASS -- TEST 'control_p8_gnu' [04:38, 03:02](1442 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:34, 02:58](1463 MB) +PASS -- TEST 'control_flake_gnu' [06:18, 04:08](560 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 02:49] +PASS -- TEST 'rap_control_gnu' [16:26, 14:53](853 MB) +PASS -- TEST 'rap_decomp_gnu' [05:26, 03:36](879 MB) +PASS -- TEST 'rap_2threads_gnu' [05:23, 02:42](912 MB) +PASS -- TEST 'rap_restart_gnu' [03:24, 01:57](580 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:28](852 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [21:26, 19:39](853 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:26, 01:51](580 MB) +PASS -- TEST 'hrrr_control_gnu' [19:24, 17:13](855 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:25, 06:55](840 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:25, 02:35](902 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:21, 06:17](855 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:50](580 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:19, 01:45](668 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:15](850 MB) PASS -- COMPILE 'csawmg_gnu' [04:10, 02:40] -PASS -- TEST 'control_csawmg_gnu' [07:31, 05:44](757 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:13, 05:32] -PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:52](1287 MB) -PASS -- TEST 'regional_debug_gnu' [07:29, 05:37](765 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:50](861 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:47](861 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:48](867 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:49](867 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:12](948 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 02:48](860 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 01:56](861 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:07](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:13](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:21](1449 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:50](862 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:02](862 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 02:58](872 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:22, 01:30] -PASS -- TEST 'control_wam_debug_gnu' [06:32, 04:34](1310 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:46] -PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:49](741 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:52] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:22, 03:22](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:24, 03:13](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:27, 02:35](740 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 02:27](733 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 03:09](714 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:25, 01:46](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:39](558 MB) -PASS -- TEST 'conus13km_control_gnu' [04:49, 03:01](905 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:56, 01:12](907 MB) -PASS -- TEST 'conus13km_decomp_gnu' [20:52, 18:40](909 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:36, 01:44](587 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:22, 06:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 03:38](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 05:14] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:47](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 01:44](721 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:40, 07:15](923 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:39, 07:14](649 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:35, 04:06](923 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [09:35, 07:22](925 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:35, 07:16](991 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:36] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:52](744 MB) - -PASS -- COMPILE 's2swa_gnu' [14:11, 12:46] -PASS -- TEST 'cpld_control_p8_gnu' [09:58, 07:39](1603 MB) - -PASS -- COMPILE 's2s_gnu' [12:11, 11:00] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:49](1547 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:16] -PASS -- TEST 'cpld_debug_p8_gnu' [06:50, 04:42](1612 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:14, 12:14] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:40, 09:06](1575 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:50] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:40, 06:37](1588 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [11:11, 10:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [14:15, 12:45](1511 MB) +PASS -- TEST 'control_csawmg_gnu' [07:26, 05:43](757 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:03] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:21](1285 MB) +PASS -- TEST 'regional_debug_gnu' [25:28, 24:09](765 MB) +PASS -- TEST 'rap_control_debug_gnu' [06:17, 04:31](861 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:45](863 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:54](865 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:47](865 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:29](946 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:55](860 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:59](861 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:09](505 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:31](498 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:45, 01:31](1451 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:29, 01:51](861 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 01:49](863 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:33, 02:56](873 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:27] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:34](1310 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:32] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 02:08](741 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:47] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:21](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:21, 03:10](712 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:36](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:25](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:21, 03:26](712 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:47](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 01:46](558 MB) +PASS -- TEST 'conus13km_control_gnu' [04:42, 03:06](905 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:32, 01:11](909 MB) +PASS -- TEST 'conus13km_decomp_gnu' [04:34, 03:01](909 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:32, 01:41](587 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:17, 06:07] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:45](736 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 04:57] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:50](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:59](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:33, 07:13](922 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:34, 07:00](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:32, 04:15](924 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [24:33, 22:22](916 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:32, 06:56](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 04:59] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](744 MB) + +PASS -- COMPILE 's2swa_gnu' [12:10, 11:05] +PASS -- TEST 'cpld_control_p8_gnu' [09:56, 07:45](1608 MB) + +PASS -- COMPILE 's2s_gnu' [12:10, 10:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:47, 07:22](1561 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:13, 02:05] +PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:50](1614 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:41, 09:08](1592 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:51] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:39, 06:39](1559 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [12:16, 10:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [19:14, 17:27](1511 MB) SYNOPSIS: -Starting Date/Time: 20251020 15:58:01 -Ending Date/Time: 20251020 17:50:50 -Total Time: 01h:53m:24s +Starting Date/Time: 20251022 05:10:42 +Ending Date/Time: 20251022 06:56:31 +Total Time: 01h:46m:21s Compiles Completed: 70/70 -Tests Completed: 283/283 +Tests Completed: 282/283 +Failed Tests: +* TEST regional_noquilt_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1052390/regional_noquilt_intel/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF URSA REGRESSION TESTING LOG==== +====START OF URSA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 + +Submodule hashes used in testing: + 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) + 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) + 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) + 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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_165956 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: regional_noquilt +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:22] ( 1 warnings 502 remarks ) +PASS -- TEST 'regional_noquilt_intel' [05:28, 03:33](1991 MB) + +SYNOPSIS: +Starting Date/Time: 20251022 14:48:49 +Ending Date/Time: 20251022 15:03:48 +Total Time: 00h:15m:05s +Compiles Completed: 1/1 +Tests Completed: 1/1 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 18d0d42153..07f1576338 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: -d897bb57e6fa3d94a101b637faa7be2d00f2c478 +8b934413511cea07cfe4e70406326d234fc72cfc Submodule hashes used in testing: - ad7c22f6e03a5f7933df1245d677d25b8b10e946 AQM (v0.2.0-53-gad7c22f) + 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,18 +15,18 @@ 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) 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) - e3d536f8203ea9d2ab68375040015f53383ad6b5 UFSATM (heads/develop) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) 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) @@ -40,266 +40,347 @@ 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-20251017 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1771272 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3157487 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:33] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:39, 06:50](3350 MB) -PASS -- TEST 'cpld_control_gefs_intel' [34:32, 16:49](4116 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [30:45, 12:11](3920 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:34, 13:00] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 15:13](1904 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:32, 16:33](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:37, 07:41](1070 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:57, 09:17](1928 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:23, 17:46](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:34, 12:52] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 15:50](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 04:58] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:38, 20:28](1943 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:35] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:12, 08:39](3379 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:36, 08:30](3379 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:29, 05:02](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:03, 08:23](3406 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:39, 05:05](3293 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:21, 07:53](3621 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:56, 08:21](3371 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:21, 07:22](3330 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:35, 08:24](3379 MB) - -PASS -- COMPILE 's2swal_intel' [14:34, 12:21] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:31, 08:29](3343 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 11:09] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:45, 05:15](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:14, 07:33](1969 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:30](1980 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:34, 16:17] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:25](3382 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 12:09] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 15:29](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:15, 07:46](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:07, 17:56](1895 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:47, 06:36](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:41, 02:38](2898 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:18, 01:50](2313 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:05, 01:46](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:06, 01:22](2116 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:55, 01:14](1490 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:06, 01:47](2110 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:05, 01:22](2111 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:54, 01:04](1488 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:05, 01:19](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:05, 01:12](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:56, 01:04](1397 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:39] ( 1537 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 23:55](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:48, 04:01](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:43, 02:48](1579 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:53](1589 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 02:49](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:41, 02:47](1589 MB) -PASS -- TEST 'control_c48_intel' [08:55, 06:51](1598 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:58, 06:10](723 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:56, 06:56](1601 MB) -PASS -- TEST 'control_c192_intel' [10:04, 07:27](1715 MB) -PASS -- TEST 'control_c384_intel' [12:40, 08:48](2015 MB) -PASS -- TEST 'control_c384gdas_intel' [16:07, 09:16](1185 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 02:08](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:49, 01:27](407 MB) -PASS -- TEST 'control_lndp_intel' [03:45, 01:47](647 MB) -PASS -- TEST 'control_iovr4_intel' [05:41, 02:49](634 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:13, 03:32](917 MB) -PASS -- TEST 'control_iovr5_intel' [05:39, 02:55](636 MB) -PASS -- TEST 'control_p8_intel' [07:39, 03:22](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:26](1865 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:12](1868 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:21, 03:28](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:41, 03:45](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:50, 02:52](2440 MB) -PASS -- TEST 'control_restart_p8_intel' [06:17, 02:13](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:41, 03:30](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:08](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:39, 03:31](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:09](1946 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:21](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:10, 04:20](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:02, 03:43](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [08:49, 03:58](1871 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [09:36, 05:52](1877 MB) -PASS -- TEST 'regional_control_intel' [08:04, 05:19](873 MB) -PASS -- TEST 'regional_restart_intel' [06:06, 03:14](881 MB) -PASS -- TEST 'regional_decomp_intel' [08:03, 05:41](874 MB) -PASS -- TEST 'regional_2threads_intel' [05:54, 03:26](993 MB) -PASS -- TEST 'regional_noquilt_intel' [07:57, 05:19](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:22](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:52, 05:37](872 MB) -PASS -- TEST 'regional_wofs_intel' [09:05, 07:01](1610 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:26, 09:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:25, 04:24](1889 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:39] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:00, 04:08](1020 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 04:31](1201 MB) -PASS -- TEST 'rap_decomp_intel' [07:36, 04:28](1015 MB) -PASS -- TEST 'rap_2threads_intel' [07:39, 03:59](1095 MB) -PASS -- TEST 'rap_restart_intel' [06:38, 02:33](768 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:51, 04:16](1019 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:44, 04:30](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 02:35](773 MB) -PASS -- TEST 'hrrr_control_intel' [07:39, 04:06](1008 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 04:15](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:17, 03:37](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](764 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:23, 07:20](1010 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:57, 09:35](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:53, 09:15](1971 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:52] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:22, 07:07](960 MB) -PASS -- TEST 'control_ras_intel' [05:38, 03:39](672 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 07:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:17, 12:31](1669 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:51, 03:17](1863 MB) -PASS -- TEST 'regional_control_faster_intel' [08:11, 05:20](874 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:20, 04:49] ( 890 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:51](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:50](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:44](828 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:19](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:10, 05:14](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [05:36, 03:32](833 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:14](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [06:07, 03:28](1908 MB) -PASS -- TEST 'regional_debug_intel' [21:51, 19:09](933 MB) -PASS -- TEST 'rap_control_debug_intel' [08:49, 05:58](1204 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:50, 05:37](1192 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:40, 05:43](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:40, 05:47](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:49](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 06:10](1284 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:42, 05:56](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:55](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:45, 05:47](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:44, 05:49](1199 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:39, 05:35](1202 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:46, 05:49](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 08:57](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:47, 05:38](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:41, 05:45](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:12, 09:43](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:33] ( 848 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:23, 14:24](1709 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:49] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 04:07](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:26, 03:39](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:04, 03:25](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 03:11](940 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:24, 03:06](933 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:06, 03:33](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:36, 02:32](733 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:25, 02:25](727 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:53] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:19, 03:04](1022 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:41, 01:39](1138 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:03, 03:04](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [06:32, 02:13](687 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 08:01] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 04:18](920 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:33] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:48, 07:23](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:05, 05:34](1073 MB) -PASS -- TEST 'conus13km_debug_intel' [27:12, 24:08](1098 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:54, 24:16](809 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:38, 13:53](1204 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [27:45, 24:38](1104 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:40, 23:59](1171 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:32] ( 781 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:44, 06:33](1108 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:48] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:20](708 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:21, 07:45](923 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:55, 05:56](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:55, 08:40](767 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:25](922 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:48, 14:58](946 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:21, 08:06](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:21, 10:30](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:03, 04:34](383 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:46, 10:42](427 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:05, 04:47](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:59, 04:05](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:27, 06:13](552 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:48, 02:02](413 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:24, 04:05] ( 1484 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:56, 16:01](660 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:23] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:13, 08:53](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 08:30](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:28] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:49, 07:40](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 08:49] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:21, 08:02](763 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 08:15](785 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:44, 17:22](899 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:27, 10:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:47, 04:42](1912 MB) - -PASS -- COMPILE 'atml_intel' [11:30, 09:28] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:20, 04:37] ( 895 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:25, 08:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:26, 05:53](3238 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 05:32](3208 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:48, 05:22](3217 MB) - -PASS -- COMPILE 'atmaq_intel' [09:28, 07:49] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [22:45, 16:15](2389 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:54, 19:37](2437 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:42] ( 865 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:32, 40:46](1956 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:32, 11:40] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 06:51](3348 MB) +PASS -- TEST 'cpld_control_gefs_intel' [36:50, 19:24](4113 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [33:39, 11:01](3916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:34, 12:58] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:55, 15:31](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:46, 17:48](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:04, 07:52](1072 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:57, 08:02](1930 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:10, 17:58](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:32, 13:18] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:54, 16:07](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:26, 05:09] ( 1539 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:29, 21:30](1944 MB) + +PASS -- COMPILE 's2swa_intel' [13:32, 11:51] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:09, 08:25](3382 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:36, 08:43](3383 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:05, 05:53](3266 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:44](3411 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:35, 05:39](3293 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 07:58](3623 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:17](3374 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:19, 07:08](3331 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:35, 08:40](3384 MB) + +PASS -- COMPILE 's2swal_intel' [14:34, 12:16] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:38, 08:42](3341 MB) + +PASS -- COMPILE 's2sw_intel' [13:32, 11:06] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 05:11](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:24, 07:24](1976 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:31, 10:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:19, 05:27](1980 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:39, 16:26] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:37, 08:50](3383 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:34, 12:52] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:05, 15:45](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:36, 08:21](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:55, 18:13](1895 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:51, 06:39](2888 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:47, 02:45](2896 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:44, 02:05](2314 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:10, 01:59](2113 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:10, 01:18](2115 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:56, 01:09](1490 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:10, 02:00](2109 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:10, 01:23](2112 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:56, 01:14](1488 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:09, 01:22](2040 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:09, 01:21](2041 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:56, 01:23](1396 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:58] ( 1539 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:19, 24:09](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:32, 09:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:44, 04:31](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:52, 02:47](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:57, 02:56](1591 MB) +PASS -- TEST 'control_latlon_intel' [04:45, 02:45](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:53](1590 MB) +PASS -- TEST 'control_c48_intel' [09:20, 06:54](1602 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:11, 06:17](723 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:19, 07:07](1604 MB) +PASS -- TEST 'control_c192_intel' [11:22, 08:04](1709 MB) +PASS -- TEST 'control_c384_intel' [15:01, 10:48](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [18:31, 11:02](1187 MB) +PASS -- TEST 'control_stochy_intel' [04:43, 02:14](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:17, 02:16](405 MB) +PASS -- TEST 'control_lndp_intel' [04:53, 02:16](647 MB) +PASS -- TEST 'control_iovr4_intel' [06:00, 03:02](639 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:49, 04:08](918 MB) +PASS -- TEST 'control_iovr5_intel' [05:55, 02:55](637 MB) +PASS -- TEST 'control_p8_intel' [08:49, 04:26](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:59, 04:14](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:29, 04:05](1869 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:23, 03:55](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:41, 05:44](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:04, 03:37](2441 MB) +PASS -- TEST 'control_restart_p8_intel' [06:50, 02:18](1016 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:46, 04:41](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:00, 02:29](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:40, 04:35](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:58, 03:58](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:13, 06:04](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:51](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:45, 04:03](1880 MB) +PASS -- TEST 'merra2_thompson_intel' [08:26, 04:10](1870 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [10:26, 06:18](1876 MB) +PASS -- TEST 'regional_control_intel' [08:38, 05:48](873 MB) +PASS -- TEST 'regional_restart_intel' [06:10, 03:49](885 MB) +PASS -- TEST 'regional_decomp_intel' [09:27, 06:05](875 MB) +PASS -- TEST 'regional_2threads_intel' [07:28, 03:58](991 MB) +PASS -- TEST 'regional_noquilt_intel' [08:06, 06:01](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:08, 06:03](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 05:44](876 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_wofs_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:28, 09:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:46, 04:40](1890 MB) + +PASS -- COMPILE 'rrfs_intel' [10:29, 08:31] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:21, 04:23](1019 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:59, 04:45](1215 MB) +PASS -- TEST 'rap_decomp_intel' [07:35, 04:19](1016 MB) +PASS -- TEST 'rap_2threads_intel' [07:34, 04:05](1095 MB) +PASS -- TEST 'rap_restart_intel' [08:12, 02:44](767 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:33, 04:56](1019 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 05:40](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:26, 02:36](768 MB) +PASS -- TEST 'hrrr_control_intel' [08:50, 04:55](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:38, 04:59](1013 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:50, 04:21](1093 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:01, 02:51](765 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:41, 08:13](1010 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:54, 10:39](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:53, 09:46](1970 MB) + +PASS -- COMPILE 'csawmg_intel' [09:28, 07:50] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:58, 08:14](959 MB) +PASS -- TEST 'control_ras_intel' [06:42, 04:45](674 MB) + +PASS -- COMPILE 'wam_intel' [09:27, 07:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:48, 13:28](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:28, 08:07] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:02, 04:01](1863 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_faster_intel' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:25, 04:51] ( 892 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:44](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:46, 02:58](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:39, 03:31](828 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:38, 03:21](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:55, 05:10](1118 MB) +PASS -- TEST 'control_ras_debug_intel' [05:36, 03:25](836 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:34](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [07:07, 03:52](1909 MB) +PASS -- TEST 'regional_debug_intel' [21:30, 18:59](949 MB) +PASS -- TEST 'rap_control_debug_intel' [09:19, 06:07](1205 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:01, 05:43](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:19, 05:55](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:24, 05:57](1194 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:09, 05:51](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:37, 06:18](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:10, 06:13](1204 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:43, 05:59](1206 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:45, 05:47](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:47, 06:42](1202 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:43, 05:46](1202 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:58, 05:56](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:53, 09:51](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 06:16](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:46, 05:57](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:44, 10:34](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:23, 03:33] ( 850 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:35, 14:44](1708 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:55] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:46, 05:30](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 04:02](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:10, 04:13](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 03:52](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:36, 03:45](929 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:20, 03:53](893 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 02:13](737 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:52, 02:04](725 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:59] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:48, 03:29](1022 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:43, 01:51](1138 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:31, 03:15](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [05:24, 02:15](689 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:25, 08:11] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:11, 05:37](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:34] ( 783 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:41, 05:35](1078 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:42, 05:46](1072 MB) +PASS -- TEST 'conus13km_debug_intel' [26:54, 23:49](1099 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:52, 24:11](818 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:49, 13:41](1220 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [26:46, 24:35](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:46, 24:07](1171 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:37] ( 783 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:58, 06:09](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:04] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:28, 05:43](707 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:51, 07:40](922 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:54, 04:54](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:39](765 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:39, 13:31](804 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:14, 13:56](821 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:34, 06:07](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:37, 07:53](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:34](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:58, 10:33](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 04:23](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:27, 03:59](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:40, 05:47](554 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:46](412 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:19, 03:59] ( 1486 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:34, 14:26](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:28] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 08:15](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:27, 08:54](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:33] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:53, 06:31](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:26, 09:12] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:10, 07:28](762 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:53, 07:34](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 17:49](898 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:32, 10:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:33, 05:56](1913 MB) + +PASS -- COMPILE 'atml_intel' [11:26, 09:42] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:21, 04:48] ( 897 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:25, 08:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:38, 06:00](3238 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:10, 06:30](3207 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:07, 05:52](3215 MB) + +PASS -- COMPILE 'atmaq_intel' [09:24, 08:05] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [25:32, 18:48](2391 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:12, 22:23](2437 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:19, 03:55] ( 867 warnings ) +FAILED: RUN DID NOT COMPLETE -- TEST 'regional_atmaq_debug_intel' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20251020 20:01:09 -Ending Date/Time: 20251020 21:54:49 -Total Time: 01h:54m:55s +Starting Date/Time: 20251022 17:54:42 +Ending Date/Time: 20251022 20:57:16 +Total Time: 03h:04m:19s Compiles Completed: 35/35 -Tests Completed: 177/177 +Tests Completed: 174/177 +Failed Tests: +* TEST regional_wofs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_wofs_intel.log +* TEST regional_control_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_control_faster_intel.log +* TEST regional_atmaq_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_atmaq_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ea08443ee85dc1a93de32c94f89381c694d0a410 + +Submodule hashes used in testing: + 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) + 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) + 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) + ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) + cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) + 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) + 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251021 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1828815 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'regional_wofs_intel' [09:56, 07:16](1610 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'regional_control_faster_intel' [08:03, 05:19](878 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:37] ( 867 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:42, 40:39](1959 MB) + +SYNOPSIS: +Starting Date/Time: 20251023 13:29:32 +Ending Date/Time: 20251023 14:21:50 +Total Time: 00h:53m:11s +Compiles Completed: 3/3 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. 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/test_changes.list b/tests/test_changes.list index 9fa7012059..97cfa6fe5a 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,3 +1,105 @@ -regional_atmaq intel -regional_atmaq_canopy intel -regional_atmaq_debug intel +cpld_control_gefs intel +cpld_restart_gefs intel +cpld_dcp_gefs intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17_iau intel +cpld_control_sfs intel +control_flake intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr4_gfdlmpv3 intel +control_iovr5 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 +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +merra2_hf_thompson intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_2dwrtdecomp intel +regional_wofs intel +control_p8_rrtmgp_rad32 intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_csawmg intel +control_ras intel +control_p8_faster intel +regional_control_faster intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +rap_control_dyn64_phy32 intel +hafs_global_multiple_4nests_atm intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +cpld_control_sfs intelllvm +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_csawmg gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +rap_control_dyn64_phy32 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. From ea8a818a603c741b5be2b6b3af0e7aad2de515aa Mon Sep 17 00:00:00 2001 From: Jessica Meixner Date: Mon, 27 Oct 2025 15:28:50 -0400 Subject: [PATCH 45/48] Update WW3 and resolve warnings // Cloud cover parameter change #2940 // Turn off HYCOM tests #2936 // Ursa CICD update #2945 (#2948) * UFSWM - update cloud cover parameters in ccpp-physics, update WW3, disable HYCOM RTs, add Ursa CI/CD suport * UFSATM - updates physics * ccpp-physics - change to use moorthi parameters in xu/randall for Thompson M * WW3 - Updates WW3 to current develop and addresses compiler warnings --- .cicd/scripts/create_baseline.sh | 27 + UFSATM | 2 +- WW3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 567 +++++------ tests/logs/RegressionTests_gaeac6.log | 593 ++++++----- tests/logs/RegressionTests_hera.log | 826 ++++++++------- tests/logs/RegressionTests_hercules.log | 950 ++++++++---------- tests/logs/RegressionTests_orion.log | 590 ++++++----- tests/logs/RegressionTests_ursa.log | 922 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 586 +++++------ tests/rt.conf | 26 +- tests/test_changes.list | 133 ++- 16 files changed, 2476 insertions(+), 2852 deletions(-) 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/UFSATM b/UFSATM index 062acd654f..25f0376b50 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 062acd654f645fad2bd0f128c5b7e8154187c71c +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 35cdd94d77..7df287c2a8 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251021 +export BL_DATE=20251024 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index dbc9097dd9..2774cb4b85 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Oct 22 06:33:31 UTC 2025 +Sat Oct 25 08:34:53 UTC 2025 Start Operation Requirement Test 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_3829118/bit_base_bit_base +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 = 250.849673 - 0: The maximum resident set size (KB) = 1534888 + 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/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_3829118/dbg_base_dbg_base +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 = 863.260932 - 0: The maximum resident set size (KB) = 1534628 + 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/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_3829118/dcp_dcp +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 = 228.088623 - 0: The maximum resident set size (KB) = 1530016 + 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/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_3829118/mpi_mpi +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 = 230.829455 - 0: The maximum resident set size (KB) = 1527812 + 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/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_3829118/rst_rst +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 = 226.454761 - 0: The maximum resident set size (KB) = 1540240 + 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/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_3829118/std_base_std_base +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 = 231.835597 - 0: The maximum resident set size (KB) = 1515912 + 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/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_3829118/thr_thr +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 = 230.115671 - 0: The maximum resident set size (KB) = 1528400 + 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 22 07:39:56 UTC 2025 -Elapsed time: 01h:06m:25s. 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 e6cc81e6d8..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 22 05:09:17 UTC 2025 +Sat Oct 25 07:10:58 UTC 2025 Start Operation Requirement Test 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_3520262/dbg_base_dbg_base +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 = 2236.425550 - 0: The maximum resident set size (KB) = 1638892 + 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/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_3520262/rst_rst +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 = 588.893765 - 0: The maximum resident set size (KB) = 1643324 + 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/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_3520262/std_base_std_base +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 = 582.707028 - 0: The maximum resident set size (KB) = 1635136 + 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 22 06:33:31 UTC 2025 -Elapsed time: 01h:24m:14s. 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 f8e28c4450..49d2dc0834 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Oct 22 04:13:13 UTC 2025 +Sat Oct 25 06:17:47 UTC 2025 Start Operation Requirement Test 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_3065136/bit_base_bit_base +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 = 616.250620 - 0: The maximum resident set size (KB) = 892324 + 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/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_3065136/dcp_dcp +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 = 491.166716 - 0: The maximum resident set size (KB) = 866416 + 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/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_3065136/std_base_std_base +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 = 492.445833 - 0: The maximum resident set size (KB) = 855796 + 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/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_3065136/thr_thr +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 = 497.190526 - 0: The maximum resident set size (KB) = 862844 + 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 22 05:09:17 UTC 2025 -Elapsed time: 00h:56m:04s. 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 3dc3f8c619..0817dea43b 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b934413511cea07cfe4e70406326d234fc72cfc +97492dc15ca61685c8bc5f49ff3d3a0b3b930292 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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-20251021 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4017174 +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:26, 11:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:34, 06:34](3333 MB) -PASS -- TEST 'cpld_control_gefs_intel' [02:15, 16:38](4114 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:31, 07:52](3926 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 13:02] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:38, 15:01](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:35, 16:30](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:13, 07:24](1073 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:31, 07:34](1933 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:58, 17:35](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 12:59] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:41, 15:30](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:19] ( 1539 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:16, 21:18](1943 MB) - -PASS -- COMPILE 's2swa_intel' [13:25, 11:49] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:10, 08:12](3368 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:37, 08:10](3367 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:04, 04:46](3246 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:27, 08:19](3384 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:33, 04:47](3262 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:53, 07:36](3584 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:53, 08:04](3359 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:52, 06:45](3307 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:28, 08:12](3368 MB) - -PASS -- COMPILE 's2swal_intel' [13:27, 11:51] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [23:50, 08:20](3365 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:38, 04:52](3245 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:13, 08:18](3338 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:10] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 04:51](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:05, 07:22](1974 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:03](1970 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:04] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:28, 08:11](3369 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:46] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 15:09](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:05, 07:25](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:23, 17:34](1895 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:41, 06:12](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:37, 02:16](2898 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:13, 01:37](2299 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:02, 01:30](2112 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:02, 01:04](2109 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:50, 00:55](1459 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:02, 01:28](2108 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:02, 00:57](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:50, 00:47](1458 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:02, 01:02](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:01, 00:50](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:49, 00:56](1396 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:38] ( 1539 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:23, 24:08](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [11:40, 04:10](683 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:47, 02:30](1575 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:51, 02:47](1584 MB) -PASS -- TEST 'control_latlon_intel' [11:39, 02:37](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:47, 02:39](1584 MB) -PASS -- TEST 'control_c48_intel' [10:52, 06:41](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:50, 06:02](720 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:54, 07:00](1599 MB) -PASS -- TEST 'control_c192_intel' [17:04, 07:32](1703 MB) -PASS -- TEST 'control_c384_intel' [39:50, 08:52](2021 MB) -PASS -- TEST 'control_c384gdas_intel' [50:29, 09:18](1170 MB) -PASS -- TEST 'control_stochy_intel' [09:39, 01:52](634 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:39, 01:12](402 MB) -PASS -- TEST 'control_lndp_intel' [09:39, 01:51](637 MB) -PASS -- TEST 'control_iovr4_intel' [10:42, 02:41](628 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:02, 03:06](919 MB) -PASS -- TEST 'control_iovr5_intel' [09:40, 02:44](634 MB) -PASS -- TEST 'control_p8_intel' [10:31, 03:07](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:45, 03:20](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:17, 03:01](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:20, 03:04](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:54, 03:11](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:49, 02:22](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [09:22, 02:00](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:40, 03:08](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:42, 01:59](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:04](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:51, 02:55](1939 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:01, 05:10](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 04:06](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:17, 03:17](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [10:44, 03:46](1865 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [11:23, 04:43](1873 MB) -PASS -- TEST 'regional_control_intel' [08:59, 05:13](877 MB) -PASS -- TEST 'regional_restart_intel' [06:56, 02:55](881 MB) -PASS -- TEST 'regional_decomp_intel' [08:51, 05:31](879 MB) -PASS -- TEST 'regional_2threads_intel' [09:52, 03:21](1000 MB) -PASS -- TEST 'regional_noquilt_intel' [07:52, 05:16](1165 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:52, 05:12](877 MB) -PASS -- TEST 'regional_wofs_intel' [11:57, 06:52](1608 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:24, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [12:22, 04:03](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:36] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [10:59, 04:03](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:22, 04:23](1211 MB) -PASS -- TEST 'rap_decomp_intel' [09:34, 04:16](1013 MB) -PASS -- TEST 'rap_2threads_intel' [09:28, 03:45](1091 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 02:16](765 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:18, 04:06](1013 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:30, 04:10](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:31, 02:25](769 MB) -PASS -- TEST 'hrrr_control_intel' [09:50, 03:57](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:28, 04:01](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:30, 03:27](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:39, 02:12](759 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:07, 07:23](1008 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:42, 09:34](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:42, 09:07](1967 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:45] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [15:01, 07:01](961 MB) -PASS -- TEST 'control_ras_intel' [06:34, 03:29](668 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 07:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:17, 12:27](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 07:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:17, 03:08](1862 MB) -PASS -- TEST 'regional_control_faster_intel' [08:56, 04:59](875 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:50] ( 892 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:48, 02:37](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 02:53](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:39, 03:41](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:38, 03:11](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:00, 05:09](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [06:33, 03:15](838 MB) -PASS -- TEST 'control_diag_debug_intel' [06:39, 03:14](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [06:59, 03:15](1900 MB) -PASS -- TEST 'regional_debug_intel' [20:11, 18:07](928 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:45](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 05:37](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:37, 05:40](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:39, 05:42](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:38, 05:49](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:51, 06:05](1281 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:37, 05:53](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:39, 05:53](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:39, 05:53](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:40, 05:49](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:39, 05:42](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:40, 05:56](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:44, 09:08](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:40, 05:44](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:43, 05:43](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:06, 09:40](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:32] ( 850 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:22, 14:38](1696 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 07:46] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:38, 04:11](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:16, 03:32](893 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:33, 03:23](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:24, 03:10](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:51, 03:03](928 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:51, 03:41](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 02:01](729 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:55](723 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:50] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:34, 03:08](1020 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:10, 01:24](1143 MB) -PASS -- TEST 'conus13km_decomp_intel' [09:11, 03:07](1028 MB) -PASS -- TEST 'conus13km_restart_intel' [04:07, 01:53](690 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:26, 07:51] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:59, 04:15](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:33] ( 783 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:39, 05:32](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:41, 05:34](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [28:45, 23:40](1103 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:40, 23:42](812 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:17, 13:21](1201 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:23, 24:25](1087 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:33, 23:44](1168 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 03:32] ( 783 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:40, 05:39](1106 MB) - -PASS -- COMPILE 'hafsw_intel' [14:27, 10:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:10, 04:25](705 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [22:20, 04:43](917 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:50, 03:42](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 06:54](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 11:45](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:36, 13:06](949 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:06, 05:24](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:18, 06:41](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:13, 03:06](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:18, 07:57](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 03:55](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:01, 03:41](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:26, 04:30](549 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:47, 01:39](406 MB) -PASS -- TEST 'gnv1_nested_intel' [08:14, 03:49](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:01] ( 1486 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:28, 14:10](592 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:29, 09:18] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:29, 07:12](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:35, 07:17](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:28, 09:49] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:55, 05:28](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:29, 09:16] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:08, 06:23](760 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 06:26](734 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:37, 16:22](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:30, 09:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 03:12](1567 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 02:15](1568 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:59](685 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:47](685 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:28, 03:14](684 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 03:22](1564 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:28, 03:16](1564 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:27, 02:59](685 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:38, 07:15](1366 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 07:06](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:23, 03:05](1564 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:33, 05:34](4520 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 05:40](4522 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:26] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 03:21](1565 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:43, 01:10](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:37, 00:56](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:41, 00:45](437 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 10:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:44, 04:01](1911 MB) - -PASS -- COMPILE 'atml_intel' [15:29, 09:25] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [11:30, 03:39](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:05, 02:10](1033 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:24, 04:23] ( 897 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:31, 05:37](1910 MB) - -PASS -- COMPILE 'atmw_intel' [14:27, 08:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:12, 02:12](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:00, 04:30](3241 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:45, 05:16](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:48, 05:16](3129 MB) - -PASS -- COMPILE 'atmaq_intel' [09:22, 07:53] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [22:16, 15:45](2398 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:03, 19:01](2441 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:40] ( 867 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:13, 40:43](1972 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' [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: 20251022 16:49:59 -Ending Date/Time: 20251022 19:31:57 -Total Time: 02h:42m:31s -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 c55c215071..3cf04ec0be 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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-20251021 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3831302 +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:11, 08:42] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:48, 04:01](2019 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:13, 11:54] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:07](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 11:09](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:35, 04:55](1055 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:35, 05:01](1909 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:26, 11:46](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:13, 13:03] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:34, 10:19](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:34] ( 1559 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:39, 12:44](1924 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:11] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:43, 05:07](2077 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:48, 05:02](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:35, 02:46](1602 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:37, 05:04](2080 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:30, 04:38](1444 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 05:56](2224 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:33, 04:55](2053 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:47, 04:04](1990 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:44, 05:00](2052 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [10:24, 05:29](2381 MB) - -PASS -- COMPILE 's2swal_intel' [09:11, 08:07] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:48, 05:03](2061 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:36, 02:47](1591 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:40, 05:10](1899 MB) - -PASS -- COMPILE 's2sw_intel' [09:11, 07:50] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:35, 02:59](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:27](1847 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:32] ( 1449 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:16](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:27] ( 1449 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:38, 03:47](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:33] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 03:12](1966 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:08] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:39, 04:53](2049 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 12:06] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:42, 10:04](1917 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:40, 05:00](1083 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 11:45](1901 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:23, 04:17](2868 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:23, 01:19](2866 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:22, 00:47](2282 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:19, 00:45](2093 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:18, 00:24](2082 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:21, 00:22](1435 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:17, 00:46](2088 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:21, 00:25](2091 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:19, 00:18](1434 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:17, 00:27](2024 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:19, 00:22](2016 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:19, 00:18](1366 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:24] ( 1559 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:33, 16:03](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:19, 02:35](528 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:21, 01:36](1416 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:24, 01:42](1431 MB) -PASS -- TEST 'control_latlon_intel' [07:19, 01:39](1426 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:21, 01:42](1427 MB) -PASS -- TEST 'control_c48_intel' [08:22, 04:39](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 04:19](689 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:21, 04:47](1568 MB) -PASS -- TEST 'control_c192_intel' [11:25, 04:52](1689 MB) -PASS -- TEST 'control_c384_intel' [16:43, 09:47](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [17:29, 10:16](1183 MB) -PASS -- TEST 'control_stochy_intel' [06:19, 01:14](484 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:42](279 MB) -PASS -- TEST 'control_lndp_intel' [06:19, 01:07](475 MB) -PASS -- TEST 'control_iovr4_intel' [08:17, 01:42](479 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:20, 02:02](772 MB) -PASS -- TEST 'control_iovr5_intel' [08:17, 01:44](477 MB) -PASS -- TEST 'control_p8_intel' [07:32, 01:57](1709 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 02:00](1711 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:26, 01:56](1714 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:28, 01:57](1736 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:26, 02:03](1738 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:26, 01:28](2439 MB) -PASS -- TEST 'control_restart_p8_intel' [03:21, 01:09](869 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:23, 01:55](1706 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:09](865 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:22, 01:56](1716 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:21, 02:12](1793 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:20, 03:15](1710 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:36](1772 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:25, 02:03](1718 MB) -PASS -- TEST 'merra2_thompson_intel' [04:26, 02:18](1715 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:47, 03:56](1730 MB) -PASS -- TEST 'regional_control_intel' [05:22, 03:20](871 MB) -PASS -- TEST 'regional_restart_intel' [03:24, 01:51](880 MB) -PASS -- TEST 'regional_decomp_intel' [05:19, 03:28](863 MB) -PASS -- TEST 'regional_2threads_intel' [04:17, 02:49](993 MB) -PASS -- TEST 'regional_noquilt_intel' [05:19, 03:18](1160 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:18, 03:15](848 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:19](854 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:12, 06:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:28, 02:35](1741 MB) - -PASS -- COMPILE 'rrfs_intel' [07:12, 05:44] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:26, 02:41](866 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:36, 02:52](1208 MB) -PASS -- TEST 'rap_decomp_intel' [04:22, 02:53](862 MB) -PASS -- TEST 'rap_2threads_intel' [05:23, 03:06](948 MB) -PASS -- TEST 'rap_restart_intel' [03:31, 01:30](727 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:31, 02:39](862 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:30, 02:45](862 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:28, 01:27](725 MB) -PASS -- TEST 'hrrr_control_intel' [04:34, 02:32](858 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:39](855 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:22, 03:00](937 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:26](689 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:29, 04:43](855 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 06:00](1810 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:44](1804 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 05:26] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:21, 04:19](821 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:15](517 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:58, 07:36](1500 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:29, 01:58](1708 MB) -PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](849 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:21] ( 907 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:17, 01:33](1448 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:16, 01:39](1444 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:07](648 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:14, 01:54](647 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:28, 02:50](957 MB) -PASS -- TEST 'control_ras_debug_intel' [03:18, 01:53](658 MB) -PASS -- TEST 'control_diag_debug_intel' [03:19, 01:54](1508 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 01:53](1737 MB) -PASS -- TEST 'regional_debug_intel' [13:26, 11:26](881 MB) -PASS -- TEST 'rap_control_debug_intel' [05:17, 03:23](1037 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:22](1027 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:24](1030 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:21](1031 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:22](1032 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:33](1115 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:23](1036 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:27](1035 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:26](1034 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:26](1043 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:21](1032 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:20](1033 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:23](1033 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:19](1035 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:23](1030 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:43](1039 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:03] ( 864 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:25, 08:42](1535 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:21] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:33, 02:35](1064 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:32, 02:17](746 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:27, 02:11](731 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:33, 02:42](793 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:34, 02:37](788 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 02:19](739 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:22, 01:15](635 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:12](612 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:28] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:40, 01:52](1018 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:56](1028 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:25, 01:55](1021 MB) -PASS -- TEST 'conus13km_restart_intel' [03:24, 01:08](883 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:34] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:47](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:11] ( 797 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:17](914 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:12](909 MB) -PASS -- TEST 'conus13km_debug_intel' [15:30, 13:43](1060 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:23, 14:04](759 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:22, 12:46](1069 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:22, 14:21](1059 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 13:51](1124 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:08] ( 797 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:18](947 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:40] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:29, 02:32](841 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:55, 03:51](1047 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:21](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:33, 04:14](900 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [08:27, 07:06](934 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:41, 07:38](958 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:11](450 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:31, 03:52](467 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 01:36](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:02, 04:08](422 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:20](486 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:29, 02:11](490 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:27, 02:40](559 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:52](409 MB) -PASS -- TEST 'gnv1_nested_intel' [04:42, 02:33](1685 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:23] ( 1504 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:26, 07:54](564 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:28, 04:30](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:30, 04:35](771 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:54] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:55, 03:14](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:29, 03:54](891 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:29, 03:56](851 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:34, 10:55](882 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:09] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 02:05](1549 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:24](1547 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:52](671 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:53](669 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:55](667 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:03](1549 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:03](1552 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:52](672 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:34, 04:58](1359 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:32, 04:43](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:03](1549 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:46](4510 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:51](4514 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:30] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:09](1553 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:04](1552 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:57](304 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:18, 00:42](429 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:29](430 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:12] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:37, 02:27](1766 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:31, 03:12](1762 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:17] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:30, 02:26](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:23](1018 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 02:49] ( 912 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:29, 03:22](1880 MB) - -PASS -- COMPILE 'atmw_intel' [09:12, 07:28] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:21](1737 MB) - -PASS -- COMPILE 'atmaero_intel' [07:10, 05:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:29, 02:41](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:09](1570 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:18](1595 MB) - -PASS -- COMPILE 'atmaq_intel' [07:12, 05:29] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [15:01, 12:41](2970 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:56, 14:29](2969 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:11] ( 881 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:49, 25:20](2983 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:20] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:21, 06:00](786 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: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' [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:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:32, 03:12](1766 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:51] ( 911 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:28, 03:17](1885 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: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: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' [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:14] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:05](788 MB) SYNOPSIS: -Starting Date/Time: 20251022 01:11:42 -Ending Date/Time: 20251022 02:31:26 -Total Time: 01h:20m:13s -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 b06e4401f5..bffbde545e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) a0363fd82ba2c4a44b3e80904f550868b321024c NOAHMP-interface/noahmp (v3.7.1-466-ga0363fd) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) - 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-20251021 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2915315 +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' [14:11, 12:09] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:04, 12:15](2213 MB) -PASS -- TEST 'cpld_control_gefs_intel' [33:18, 19:01](3042 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [21:32, 05:11](2739 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [26:52, 16:00](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:14] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:54, 21:14](2082 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:00, 20:39](2282 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 07:58](1368 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:01, 08:55](2220 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:58, 25:04](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:54] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:01](2063 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:07] ( 1559 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 21:50](1940 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:28] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:08, 14:23](2285 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:12, 12:28](2294 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:09, 06:15](1892 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:04, 12:25](2308 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:13, 06:09](1888 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:04, 12:23](2351 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:04, 12:31](2267 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:04, 12:14](2057 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:11, 12:20](2292 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:56, 16:45](2660 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:41, 08:34](2798 MB) - -PASS -- COMPILE 's2swal_intel' [13:11, 12:01] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [14:55, 12:24](2127 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:06, 06:18](1733 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:49, 08:00](2253 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 11:06] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:43, 11:20](2112 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:45, 06:19](2191 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:12] ( 1449 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:52, 15:09](2272 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:56] ( 1449 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:49, 06:33](2074 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:55] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:21](2176 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:30] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 11:28](2281 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:51] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:54, 17:06](2134 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 07:57](1365 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:57, 20:08](1940 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:42, 07:49](3097 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:43, 02:23](3074 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:34, 01:25](2519 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:37, 01:15](2257 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:43](2265 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:34](1587 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:14](2259 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:37, 00:43](2254 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:33, 00:33](1591 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:37, 00:42](2194 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:38, 00:34](2183 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:29](1532 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:43] ( 1559 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 28:04](1981 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:25] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 03:21](828 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](1710 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:22, 02:35](1726 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:29](1723 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:34](1727 MB) -PASS -- TEST 'control_c48_intel' [09:22, 07:16](1721 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:22, 06:40](849 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:22, 07:27](1730 MB) -PASS -- TEST 'control_c192_intel' [09:34, 07:33](1921 MB) -PASS -- TEST 'control_c384_intel' [11:22, 08:29](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [12:10, 08:38](1395 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:40](789 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:02](629 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:33](787 MB) -PASS -- TEST 'control_iovr4_intel' [04:19, 02:35](781 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 03:02](1078 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:30](783 MB) -PASS -- TEST 'control_p8_intel' [04:42, 02:59](2004 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:43, 03:11](2016 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:56](2012 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:40, 02:55](2034 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:41, 03:05](2047 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:39, 02:10](2413 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:46](1281 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](2016 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:42](1285 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:36, 03:03](1996 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:35, 03:21](2047 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:33, 05:10](2018 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:46, 04:16](2075 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:10](2019 MB) -PASS -- TEST 'merra2_thompson_intel' [05:42, 03:32](2035 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:30, 04:51](2035 MB) -PASS -- TEST 'regional_control_intel' [07:32, 05:17](1224 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:53](1240 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:34](1213 MB) -PASS -- TEST 'regional_2threads_intel' [05:30, 04:00](1093 MB) -PASS -- TEST 'regional_noquilt_intel' [07:31, 05:17](1508 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 05:21](1211 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:17](1224 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 06:43](2044 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:11, 11:15] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:45, 04:10](2046 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:23] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [06:35, 04:10](1182 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:09](1326 MB) -PASS -- TEST 'rap_decomp_intel' [06:32, 04:18](1168 MB) -PASS -- TEST 'rap_2threads_intel' [06:31, 04:40](1178 MB) -PASS -- TEST 'rap_restart_intel' [04:36, 02:13](1172 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:34, 04:11](1177 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:29, 04:22](1164 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:32, 02:15](1176 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 04:01](1174 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:06](1152 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:30, 04:23](1168 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1141 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:34, 07:37](1213 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:23](2114 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:19, 09:00](2178 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:11] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:30, 06:15](1165 MB) -PASS -- TEST 'control_ras_intel' [05:18, 03:19](864 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:14] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [13:39, 11:30](1792 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:54] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:38, 02:49](2014 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 04:52](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:31] ( 907 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:11](1754 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:14](1762 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:00](964 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:42](957 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:11](1276 MB) -PASS -- TEST 'control_ras_debug_intel' [04:19, 02:43](968 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 02:42](1816 MB) -PASS -- TEST 'control_debug_p8_intel' [04:34, 02:41](2044 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 17:01](1222 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:51](1341 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:42](1350 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:47](1340 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:54](1341 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:54](1335 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:07](1436 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:01](1343 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:57](1353 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:54](1344 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1341 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:47](1339 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:52](1334 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:55](1338 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:53](1351 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:47](1341 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:32](1359 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:57] ( 864 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 13:08](1819 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 08:24] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:56](1186 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:29, 03:31](1116 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 03:25](1094 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:27, 03:59](1046 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:27, 03:50](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:38](1025 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:27, 01:54](1066 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](1055 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:29] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:50, 03:00](1462 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:18](1291 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:40, 02:59](1496 MB) -PASS -- TEST 'conus13km_restart_intel' [03:39, 01:43](1331 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:34] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:31, 04:13](1132 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:53] ( 797 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:49](1220 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:18, 04:43](1224 MB) -PASS -- TEST 'conus13km_debug_intel' [25:41, 22:43](1506 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:40, 22:57](1230 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:35, 19:42](1341 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:36, 22:48](1532 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:35, 22:23](1581 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:02] ( 797 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:54](1284 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 11:01] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:43, 03:47](912 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:23, 05:17](1101 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 03:36](1168 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:49, 06:13](945 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:45, 29:32](968 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:36, 05:14](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:39, 05:59](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:29, 02:33](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 06:30](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:32, 03:30](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:31, 03:20](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:34, 03:46](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:05](406 MB) -PASS -- TEST 'gnv1_nested_intel' [06:56, 03:36](1855 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:20] ( 1504 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:39, 12:31](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:02] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:41, 15:11](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:42, 15:08](674 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:14] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:18, 10:34](669 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:03] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:41, 05:50](938 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:45, 05:56](921 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:03, 16:16](1302 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:07] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:54](2009 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 01:58](1953 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:45](1263 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:47](1266 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:49](1268 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:01](2010 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:03](2012 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:45](1262 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:35, 07:04](1784 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:40](1162 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 03:01](2006 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:53](4967 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:51](4965 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:45] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:51](1913 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:06] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:59](2008 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:53](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:33](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:27](309 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:12] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:32](636 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:28, 00:17](510 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:21] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:50, 03:42](2093 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 09:00] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 04:43](2106 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:42] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:44, 03:15](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:35, 01:50](1129 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:52] ( 912 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:46, 04:49](1878 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:18] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 01:57](2036 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:50] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:42, 04:15](2115 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:34, 04:54](1881 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:36, 05:00](1897 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:35] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [17:36, 15:04](2920 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [21:15, 18:21](2931 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:02] ( 881 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:09, 39:13](2937 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:32] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:29](1186 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:28, 04:10](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:12, 04:04] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:29, 04:41](1126 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:11] -PASS -- TEST 'control_c48_gnu' [11:23, 09:26](1540 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:50](606 MB) -PASS -- TEST 'control_ras_gnu' [06:18, 04:43](613 MB) -PASS -- TEST 'control_p8_gnu' [06:46, 04:23](1541 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:41, 04:12](1550 MB) -PASS -- TEST 'control_flake_gnu' [07:20, 05:24](654 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:57] -PASS -- TEST 'rap_control_gnu' [07:31, 05:53](947 MB) -PASS -- TEST 'rap_decomp_gnu' [08:28, 05:54](949 MB) -PASS -- TEST 'rap_2threads_gnu' [10:30, 06:54](1024 MB) -PASS -- TEST 'rap_restart_gnu' [05:31, 03:08](677 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:29, 05:52](942 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:26, 05:58](949 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [05:32, 03:03](684 MB) -PASS -- TEST 'hrrr_control_gnu' [08:27, 05:44](950 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [09:31, 05:42](936 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:26, 06:36](1010 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:29, 05:45](950 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:19, 02:57](686 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:21, 02:58](773 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:33, 10:57](939 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:33] -PASS -- TEST 'control_csawmg_gnu' [10:31, 08:25](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:49] -PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:31](1378 MB) -PASS -- TEST 'regional_debug_gnu' [10:33, 08:30](882 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:37](959 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:26](961 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:37](962 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 02:32](965 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:27, 02:44](1045 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:05](952 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:18, 02:31](958 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:32](602 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:41](596 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:37](1552 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:30](960 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:36](956 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:20](972 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:00] -PASS -- TEST 'control_wam_debug_gnu' [09:38, 06:21](1403 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:44] -PASS -- TEST 'control_csawmg_debug_gnu' [04:30, 02:18](836 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:58] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:31, 05:02](797 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:27, 05:01](802 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:27, 06:03](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:24, 05:53](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:25, 05:09](800 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:26, 02:41](648 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:19, 02:39](657 MB) -PASS -- TEST 'conus13km_control_gnu' [06:49, 04:51](1027 MB) -PASS -- TEST 'conus13km_2threads_gnu' [04:40, 02:05](1015 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:40, 04:53](1031 MB) -PASS -- TEST 'conus13km_restart_gnu' [06:37, 02:42](732 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:57] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:44](829 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:33] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:27](807 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:28](815 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:38, 10:42](1045 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [13:40, 11:08](771 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [11:39, 08:56](1033 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:37, 11:21](1047 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:34, 11:12](1137 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:51] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](836 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:24] -PASS -- TEST 'cpld_control_p8_gnu' [15:02, 11:05](1690 MB) - -PASS -- COMPILE 's2s_gnu' [17:11, 16:00] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [32:51, 09:52](1628 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:45] -PASS -- TEST 'cpld_debug_p8_gnu' [11:52, 06:59](1685 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:03] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:46, 17:48](1619 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:48] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:45, 10:59](1548 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:49] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:25](1558 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:08] -PASS -- TEST 'control_gfs_mpas_gnu' [03:27, 00:38](6355 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:11, 08:39] ( 1 warnings 404 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:32, 01:24](1168 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: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: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' [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:40] +PASS -- TEST 'control_csawmg_debug_gnu' [04:31, 02:16](838 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' [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, 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:11, 06:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:34](832 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' [17:11, 15:35] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:56, 09:48](1641 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:11, 15:47] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:46, 17:41](1600 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:34] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:26](1555 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:11, 08:32] ( 1 warnings 404 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:27, 01:24](1169 MB) SYNOPSIS: -Starting Date/Time: 20251022 05:10:29 -Ending Date/Time: 20251022 07:14:07 -Total Time: 02h:04m:02s -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 1e83e70a64..b0bea91528 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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,565 +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-20251021 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2544187 +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' [17:12, 16:01] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 08:00](2166 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_gefs_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [39:07, 25:49](3153 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 24:31] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:24, 17:43](2034 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:42, 18:20](2334 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:39, 06:44](1359 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:42, 07:59](2223 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 18:48](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:50] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:48, 18:04](1994 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:24] ( 1559 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:24, 17:10](1994 MB) - -PASS -- COMPILE 's2swa_intel' [19:12, 17:30] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:36, 12:02](2258 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 08:38](2271 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:34, 05:33](1957 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:05, 08:35](2280 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 04:31](1840 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:03, 09:02](2390 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:12, 12:23](2251 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:08, 07:01](2135 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:20, 18:10](2268 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:55, 16:41](2940 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:47, 12:42](2976 MB) - -PASS -- COMPILE 's2swal_intel' [13:12, 11:43] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [11:16, 08:29](2232 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [16:29, 13:45](1937 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:08, 06:52](2240 MB) - -PASS -- COMPILE 's2sw_intel' [17:12, 15:49] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:46](2045 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:10, 07:16](2164 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:12, 07:25] ( 1449 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:06, 20:29](2297 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:17] ( 1449 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:29](2081 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:10] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:09, 14:11](2133 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:11, 14:18] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:12, 07:56](2263 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 23:16] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 15:19](2098 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:26, 06:46](1415 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:01, 15:43](1995 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:45, 07:26](3062 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:49, 01:50](3041 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:49, 01:07](2477 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:32, 00:58](2228 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:35, 00:33](2246 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:26](1555 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:34, 00:58](2233 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:30, 00:34](2233 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:38, 00:26](1557 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:30, 00:34](2158 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:34, 00:45](2167 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:23](1506 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:27] ( 1559 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:13, 23:43](2068 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:09] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:05](722 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:10](1609 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:22](1625 MB) -PASS -- TEST 'control_latlon_intel' [04:27, 02:13](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:23](1624 MB) -PASS -- TEST 'control_c48_intel' [08:31, 06:38](1702 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:30, 06:01](842 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:30, 06:45](1726 MB) -PASS -- TEST 'control_c192_intel' [09:43, 06:56](1817 MB) -PASS -- TEST 'control_c384_intel' [10:20, 08:02](2036 MB) -PASS -- TEST 'control_c384gdas_intel' [16:20, 13:02](1510 MB) -PASS -- TEST 'control_stochy_intel' [05:23, 02:55](679 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:31, 00:53](560 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:25](682 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:17](678 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:28, 02:35](976 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:14](674 MB) -PASS -- TEST 'control_p8_intel' [07:09, 03:49](1902 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 02:51](1917 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 02:47](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:53, 02:32](1924 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:07, 02:44](1943 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:48, 02:59](2429 MB) -PASS -- TEST 'control_restart_p8_intel' [05:06, 02:16](1210 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:57, 05:11](1904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:31](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:43](1900 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:58](1989 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:46](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:45](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:54, 05:06](1914 MB) -PASS -- TEST 'merra2_thompson_intel' [04:56, 03:06](1925 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:52, 06:31](1929 MB) -PASS -- TEST 'regional_control_intel' [07:28, 05:38](1199 MB) -PASS -- TEST 'regional_restart_intel' [04:30, 03:03](1206 MB) -PASS -- TEST 'regional_decomp_intel' [07:23, 06:08](1184 MB) -PASS -- TEST 'regional_2threads_intel' [08:31, 05:27](1090 MB) -PASS -- TEST 'regional_noquilt_intel' [09:37, 06:39](1502 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 05:46](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:26, 05:44](1203 MB) -PASS -- TEST 'regional_wofs_intel' [07:26, 05:46](2084 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:11, 08:40] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:06, 03:28](1951 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:13] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [09:54, 07:49](1097 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 03:24](1435 MB) -PASS -- TEST 'rap_decomp_intel' [05:54, 03:48](1055 MB) -PASS -- TEST 'rap_2threads_intel' [06:54, 04:15](1165 MB) -PASS -- TEST 'rap_restart_intel' [03:57, 01:59](1093 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:44, 03:37](1086 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:40, 03:44](1051 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:04, 03:57](1071 MB) -PASS -- TEST 'hrrr_control_intel' [05:54, 03:30](1112 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:29](1060 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:39, 04:01](1135 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:00](1039 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:03, 06:31](1199 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:23, 10:12](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 10:27](2202 MB) - -PASS -- COMPILE 'csawmg_intel' [09:11, 07:35] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:32, 05:43](1074 MB) -PASS -- TEST 'control_ras_intel' [04:21, 02:55](852 MB) - -PASS -- COMPILE 'wam_intel' [09:11, 07:31] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [11:38, 10:04](1684 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:35] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:55, 02:50](1916 MB) -PASS -- TEST 'regional_control_faster_intel' [06:28, 04:17](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:55] ( 907 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 01:57](1639 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:25, 04:17](1646 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 02:35](860 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:30](859 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:25](1163 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:30](863 MB) -PASS -- TEST 'control_diag_debug_intel' [04:25, 02:25](1719 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:16](1943 MB) -PASS -- TEST 'regional_debug_intel' [17:34, 15:35](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 04:09](1244 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:21](1246 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:08](1242 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:13](1247 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:17](1252 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:30, 04:31](1325 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:59](1243 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:21](1240 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:23](1246 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:15](1243 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:18](1251 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:11](1235 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:21, 15:56](1240 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:23, 09:21](1249 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:09](1247 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 03:41] ( 864 warnings 396 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:36] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:50, 05:07](1315 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:51, 02:59](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:52](1049 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 03:45](1077 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:35](1066 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 03:01](990 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:51, 01:37](976 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:38](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:11] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:54, 02:30](1515 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:11](1330 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:32](1541 MB) -PASS -- TEST 'conus13km_restart_intel' [04:41, 01:37](1275 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:32] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:45](1120 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:37] ( 797 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:32](1121 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:26](1127 MB) -PASS -- TEST 'conus13km_debug_intel' [21:46, 19:25](1561 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:32, 19:25](1166 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:32, 19:55](1374 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [21:31, 20:02](1589 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:29, 19:47](1629 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:27] ( 797 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:03](1218 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:52] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:40, 04:31](1035 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:10, 05:25](1225 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:26, 04:00](1295 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:52, 10:13](1091 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:48, 23:58](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:02, 20:05](1138 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:44, 04:37](594 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 05:21](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:37, 02:23](429 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 05:47](506 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 03:05](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:49, 03:30](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:46, 04:15](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:18](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 02:39] ( 1504 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:42, 10:41](636 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:16] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:42, 17:06](728 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:46, 17:51](829 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:41] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:32, 11:35](834 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:11, 17:37] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:41, 05:01](1094 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:45, 05:08](1080 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:33](1342 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:34] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:25](1867 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](1819 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:15](1122 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:15](1110 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:14](1123 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:25](1862 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:23](1867 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:15](1113 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:52, 05:47](1715 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:53, 06:54](1206 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:23](1869 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:51](4837 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:53](4830 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 05:02] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 09:30](1775 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 09:26] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:22](1859 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:59](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:39](556 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:29](555 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:06] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:59, 03:14](2042 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:54] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 04:13](2053 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:07] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:07, 02:57](1887 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 01:38](1205 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:58] ( 912 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:53, 04:01](1920 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:26] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 01:41](1949 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 11:14] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:48, 08:14](2019 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:41, 07:18](1789 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:55](1822 MB) - -PASS -- COMPILE 'atmaq_intel' [11:11, 10:07] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [16:23, 13:28](2948 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [18:20, 15:59](2947 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:25] ( 881 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:11, 32:14](2959 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 10:06] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:26, 09:30](1083 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:31] -PASS -- TEST 'control_c48_gnu' [09:31, 07:50](1583 MB) -PASS -- TEST 'control_stochy_gnu' [04:24, 02:53](589 MB) -PASS -- TEST 'control_ras_gnu' [05:20, 03:47](604 MB) -PASS -- TEST 'control_p8_gnu' [06:01, 03:29](1544 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:20](1561 MB) -PASS -- TEST 'control_flake_gnu' [06:23, 04:23](637 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:37] -PASS -- TEST 'rap_control_gnu' [07:48, 05:50](944 MB) -PASS -- TEST 'rap_decomp_gnu' [09:43, 07:21](943 MB) -PASS -- TEST 'rap_2threads_gnu' [08:47, 05:48](1001 MB) -PASS -- TEST 'rap_restart_gnu' [06:00, 04:09](673 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [16:48, 13:45](941 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 05:45](940 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:43, 03:03](681 MB) -PASS -- TEST 'hrrr_control_gnu' [05:48, 04:04](940 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:43](926 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 03:30](1000 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:40, 04:04](943 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:34, 02:10](673 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:05](757 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:58, 07:36](933 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:34] -PASS -- TEST 'control_csawmg_gnu' [15:25, 14:05](839 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:12, 10:21] -PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:11](1366 MB) -PASS -- TEST 'regional_debug_gnu' [17:38, 15:34](881 MB) -PASS -- TEST 'rap_control_debug_gnu' [06:30, 04:30](949 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [06:29, 04:37](945 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:17](949 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [06:19, 04:30](951 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:25, 02:05](1034 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 03:06](942 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 01:58](948 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:19, 02:33](583 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:20](578 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:59, 01:23](1535 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:29, 02:00](953 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:03](953 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:52, 03:19](955 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:29] -PASS -- TEST 'control_wam_debug_gnu' [07:38, 05:31](1389 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:36] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:55](822 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:51] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:43, 03:52](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [14:55, 12:44](794 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:35, 03:27](845 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:56, 04:53](832 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [10:48, 08:51](794 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:47, 02:03](643 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:03](647 MB) -PASS -- TEST 'conus13km_control_gnu' [05:52, 03:52](1033 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:52](1017 MB) -PASS -- TEST 'conus13km_decomp_gnu' [05:34, 03:59](1039 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:38, 02:08](763 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](823 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:19, 01:58](804 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 01:53](802 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:31, 08:43](1050 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:33, 08:49](777 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:29, 08:29](1034 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:29, 08:47](1057 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:27, 08:40](1120 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:22] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:05](828 MB) - -PASS -- COMPILE 's2swa_gnu' [27:11, 26:05] -PASS -- TEST 'cpld_control_p8_gnu' [12:23, 09:53](1732 MB) - -PASS -- COMPILE 's2s_gnu' [18:11, 16:46] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:59, 08:55](1616 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:00] -PASS -- TEST 'cpld_debug_p8_gnu' [14:58, 13:04](1732 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 14:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:16](1591 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:30] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:53, 09:59](1611 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:37] -FAILED: RUN DID NOT COMPLETE -- TEST 'datm_cdeps_control_cfsr_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [08:11, 02:45] -PASS -- TEST 'control_gfs_mpas_gnu' [02:20, 00:35](6401 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: 20251021 21:57:58 -Ending Date/Time: 20251021 23:52:43 -Total Time: 01h:55m:45s -Compiles Completed: 61/61 -Tests Completed: 268/271 -Failed Tests: -* TEST cpld_control_gefs_intel: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2544187/cpld_control_gefs_intel/err -* TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST datm_cdeps_control_cfsr_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/2932/tests/logs/log_hercules/run_datm_cdeps_control_cfsr_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 - -Submodule hashes used in testing: - 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) - 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) - 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) - 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) - 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) - 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-20251021 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3658562 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rerun.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 10:42] ( 1 warnings 1045 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_gefs_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:03] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:45](1606 MB) - -SYNOPSIS: -Starting Date/Time: 20251022 02:06:12 -Ending Date/Time: 20251022 03:24:45 -Total Time: 01h:18m:51s -Compiles Completed: 2/2 -Tests Completed: 1/3 -Failed Tests: -* TEST cpld_control_gefs_intel: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3658562/cpld_control_gefs_intel/err -* TEST cpld_restart_gefs_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: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 - -Submodule hashes used in testing: - 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) - 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) - 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) - 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) - 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) - 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-20251021 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2062959 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rerun.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:53] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [29:18, 17:47](3133 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [19:05, 05:08](2825 MB) - -SYNOPSIS: -Starting Date/Time: 20251023 23:04:01 -Ending Date/Time: 20251024 00:07:00 -Total Time: 01h:03m:17s -Compiles Completed: 1/1 -Tests Completed: 2/2 +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 c469e76591..c006ab19e0 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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-20251021 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3517681 +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:12] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:36, 16:03](2106 MB) -PASS -- TEST 'cpld_control_gefs_intel' [34:17, 19:22](3061 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [22:39, 05:50](2732 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [34:45, 20:12](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:04] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:07, 19:40](1976 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:47, 21:21](2140 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:36, 08:08](1218 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:10, 09:17](2094 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:15, 23:39](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:30] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:59, 19:45](1952 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:22] ( 1559 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:48, 21:51](1955 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:38] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:52, 16:39](2195 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:46, 16:09](2185 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:54, 08:13](1781 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:21, 16:03](2203 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:04, 08:02](1773 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:27, 12:31](2295 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:21, 16:10](2176 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:20, 13:59](2063 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:38, 16:04](2186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:36, 15:51](2676 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:04, 08:07](2831 MB) - -PASS -- COMPILE 's2swal_intel' [18:11, 17:08] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [20:51, 17:12](2151 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:06, 08:15](1750 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 08:18](2155 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:25] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:09, 15:48](2000 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 07:08](2092 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:18] ( 1449 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:48, 13:14](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:54] ( 1449 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:42](2033 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:02] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:31](2072 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:09] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:27, 15:53](2190 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:15] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:28, 17:39](2030 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:56, 08:10](1247 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:20, 20:19](1938 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:06, 08:13](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:04, 02:31](3036 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:59, 01:30](2477 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:43, 01:25](2238 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:42, 00:48](2240 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:37](1555 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:41, 01:24](2238 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:42, 00:48](2230 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:32, 00:37](1554 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:41, 00:49](2165 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:43, 00:42](2172 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:31, 00:32](1509 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:32] ( 1559 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:22, 28:10](2006 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:53] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:42](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 02:36](1597 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:48](1595 MB) -PASS -- TEST 'control_latlon_intel' [04:21, 02:45](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:45](1596 MB) -PASS -- TEST 'control_c48_intel' [10:32, 09:08](1723 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:37, 08:16](840 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:31, 09:20](1711 MB) -PASS -- TEST 'control_c192_intel' [10:45, 08:13](1798 MB) -PASS -- TEST 'control_c384_intel' [13:00, 09:52](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [15:34, 10:11](1346 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:49](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:10](485 MB) -PASS -- TEST 'control_lndp_intel' [03:30, 01:43](655 MB) -PASS -- TEST 'control_iovr4_intel' [04:34, 02:43](655 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:38, 03:12](951 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:44](657 MB) -PASS -- TEST 'control_p8_intel' [06:29, 03:11](1883 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 03:22](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 03:07](1895 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:20, 03:08](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:32, 03:15](1922 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:09, 02:10](2406 MB) -PASS -- TEST 'control_restart_p8_intel' [04:35, 01:51](1135 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:18, 03:09](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:41, 01:48](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:09, 03:13](1871 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:40](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:29](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:16, 04:49](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:19, 03:20](1899 MB) -PASS -- TEST 'merra2_thompson_intel' [06:37, 03:46](1908 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:25, 05:16](1907 MB) -PASS -- TEST 'regional_control_intel' [08:34, 06:18](1078 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 03:23](1097 MB) -PASS -- TEST 'regional_decomp_intel' [08:39, 06:40](1074 MB) -PASS -- TEST 'regional_2threads_intel' [06:39, 04:27](1031 MB) -PASS -- TEST 'regional_noquilt_intel' [08:42, 06:16](1363 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:41, 06:19](1094 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:19](1086 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:48](1906 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:31] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:26, 04:46](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:32] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [07:21, 04:32](1041 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:14, 05:06](1359 MB) -PASS -- TEST 'rap_decomp_intel' [07:25, 04:38](1033 MB) -PASS -- TEST 'rap_2threads_intel' [08:26, 05:22](1119 MB) -PASS -- TEST 'rap_restart_intel' [05:40, 02:30](1008 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:26, 04:28](1042 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:00, 04:37](1034 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:32, 02:28](997 MB) -PASS -- TEST 'hrrr_control_intel' [07:28, 04:19](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:24](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:56, 05:00](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:47, 02:24](967 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:24, 08:14](1038 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:50](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:20](2014 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:10] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:40, 06:30](1044 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:31](740 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 11:47] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [14:54, 12:55](1681 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:10] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:28, 03:10](1883 MB) -PASS -- TEST 'regional_control_faster_intel' [07:46, 06:04](1085 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:12] ( 907 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:14](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:17](1625 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 02:58](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:41](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:17](1146 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:42](838 MB) -PASS -- TEST 'control_diag_debug_intel' [04:33, 02:43](1689 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 02:39](1918 MB) -PASS -- TEST 'regional_debug_intel' [18:46, 16:40](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:57](1228 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:45](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:51](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:48](1219 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:09](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 05:01](1222 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:59](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:48](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:59](1214 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:49](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:54](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:59](1212 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 04:56](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:50](1216 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:32] ( 864 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:53, 12:58](1706 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:40] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:49](1238 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:15, 03:54](941 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:47](919 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 04:34](979 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:34, 04:24](992 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:55](915 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 02:10](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 02:07](886 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:47] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:07, 03:47](1330 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:30](1233 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:49](1359 MB) -PASS -- TEST 'conus13km_restart_intel' [03:45, 02:08](1196 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:53] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:34](1011 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:22] ( 797 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:47](1102 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:43](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [24:51, 22:33](1357 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 22:38](1042 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:46, 21:38](1272 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:46, 22:45](1399 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:48, 22:53](1436 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:34] ( 797 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:03](1182 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 13:55] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:53, 04:38](905 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:21, 06:00](1094 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:26](1220 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:03, 06:23](970 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:57, 28:14](995 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:15, 34:09](1023 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:52, 06:33](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:54, 07:29](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:16](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 08:05](414 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 04:19](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 04:07](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:04](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:24](396 MB) -PASS -- TEST 'gnv1_nested_intel' [06:38, 03:54](1735 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:24] ( 1504 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 12:38](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:07] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:54, 15:12](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:04, 22:13](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:49] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:52, 11:03](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:45] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:50, 06:34](969 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:46, 06:32](951 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:12](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:42] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:27](1873 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:25](1812 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:06](1130 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 03:07](1128 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:08](1125 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:26](1860 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:26](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 03:04](1130 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:16, 07:34](1665 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 07:16](1038 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:27](1868 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:19, 05:50](4820 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:18, 05:53](4833 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 03:40] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:25, 07:00](1776 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:22] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:25](1871 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:30, 01:17](251 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:47](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:30](313 MB) +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:33] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:28, 00:37](569 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:20](447 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:38] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 03:54](1996 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' [14:11, 12:16] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:00, 04:59](1988 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:21] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:26, 03:41](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:07](1112 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:48] ( 912 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:22, 04:48](1893 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' [14:11, 13:02] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:07](1916 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:34] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:27](1984 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:03, 05:20](1768 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 05:27](1790 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:46] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:02, 18:21](2916 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [24:56, 22:06](2923 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:11, 04:36] ( 881 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:51, 39:22](2930 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:12, 11:22] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 13:54](1087 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [14:10, 13:08] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [06:56, 05:05](567 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: 20251022 02:38:18 -Ending Date/Time: 20251022 04:44:29 -Total Time: 02h:07m:06s -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 8184d660e5..080baf7aa3 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,7 +1,7 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 +a2e9a82310f4751d42237cde6f8d92b4efbe29a9 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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,513 +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-20251021 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1052390 +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:49] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:50, 06:49](2202 MB) -PASS -- TEST 'cpld_control_gefs_intel' [38:31, 21:47](3244 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [16:12, 05:49](2979 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [50:25, 33:04](3459 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 13:00] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 11:51](2059 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 13:12](2620 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:49, 05:15](1503 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:59, 06:02](2341 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:40, 20:30](1971 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:11, 13:20] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:31, 12:47](2013 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:02] ( 1559 warnings 2934 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:46, 13:24](2083 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:15] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:30](2519 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:56, 07:11](2502 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:51, 03:49](2279 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:53, 07:06](2366 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 03:53](2008 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:54, 15:35](3001 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 07:04](2474 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:46, 11:43](2288 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:57, 07:03](2488 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:49, 19:31](3614 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:06, 12:09](3489 MB) - -PASS -- COMPILE 's2swal_intel' [10:11, 08:50] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [10:56, 07:34](2479 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:58, 03:48](2296 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:30](3162 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:14] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:42, 06:26](2086 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:50, 04:52](2985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:49] ( 1449 warnings 2184 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:55, 09:04](2413 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:58] ( 1449 warnings 2166 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 04:29](2115 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:28] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:22](2158 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:27] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:51, 06:40](2494 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:10, 12:43] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:40, 11:00](2172 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 05:25](1682 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:43, 15:25](2112 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [18:29, 17:09](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:30, 01:27](3018 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:31, 00:53](2471 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:52](2211 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:32](2213 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:32, 00:26](1533 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:51](2210 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:33](2211 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:26](1531 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:34](2137 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:28](2139 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:24](1489 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:08] ( 1559 warnings 2916 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:41, 19:10](2199 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:26] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:18, 02:34](1340 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:20, 01:41](2221 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:21, 01:51](2232 MB) -PASS -- TEST 'control_latlon_intel' [06:19, 01:42](2222 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:21, 01:43](2244 MB) -PASS -- TEST 'control_c48_intel' [07:17, 04:55](1670 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 04:33](804 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:17, 04:50](1672 MB) -PASS -- TEST 'control_c192_intel' [09:30, 05:06](1826 MB) -PASS -- TEST 'control_c384_intel' [09:03, 05:49](2106 MB) -PASS -- TEST 'control_c384gdas_intel' [09:57, 06:12](1947 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:22](1305 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:41](1229 MB) -PASS -- TEST 'control_lndp_intel' [03:16, 01:08](1312 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 01:46](1304 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:30, 02:12](1598 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 01:47](1294 MB) -PASS -- TEST 'control_p8_intel' [04:34, 02:07](2501 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:15](2523 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:08](2539 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:34, 02:08](2538 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:14](2562 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:38, 10:23](2401 MB) -PASS -- TEST 'control_restart_p8_intel' [03:31, 01:19](1841 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:23](2500 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:16](1855 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:31, 02:25](2519 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:31, 01:45](2025 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:41, 03:32](2525 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:42, 02:54](2591 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:35, 02:17](2518 MB) -PASS -- TEST 'merra2_thompson_intel' [04:33, 02:31](2540 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:24, 03:31](2549 MB) -PASS -- TEST 'regional_control_intel' [05:27, 03:37](1721 MB) -PASS -- TEST 'regional_restart_intel' [03:26, 02:02](1698 MB) -PASS -- TEST 'regional_decomp_intel' [05:26, 03:46](1714 MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 02:12](1565 MB) -FAILED: TEST TIMED OUT -- TEST 'regional_noquilt_intel' [, ]( MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:35](1724 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:34](1714 MB) -PASS -- TEST 'regional_wofs_intel' [06:27, 04:29](2655 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:13] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:43](2573 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 05:49] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [04:27, 02:49](1812 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 02:49](1617 MB) -PASS -- TEST 'rap_decomp_intel' [04:23, 02:48](1714 MB) -PASS -- TEST 'rap_2threads_intel' [04:23, 02:18](1178 MB) -PASS -- TEST 'rap_restart_intel' [03:32, 01:32](1747 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:26, 02:45](1788 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:23, 02:53](1711 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:27, 01:31](1781 MB) -PASS -- TEST 'hrrr_control_intel' [04:26, 02:40](1777 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:44](1739 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:23, 02:11](1173 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:28](1734 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:57](1913 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:26](2663 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:17](2900 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:37] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:28, 04:27](1742 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:17](1595 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:39] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [09:33, 08:05](2404 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:45] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:35, 02:10](2525 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 03:24](1710 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:23] ( 907 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:36](2238 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:41](2260 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:15](1489 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:58](1482 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:41, 03:09](1798 MB) -PASS -- TEST 'control_ras_debug_intel' [04:16, 02:18](1494 MB) -PASS -- TEST 'control_diag_debug_intel' [03:41, 02:04](2333 MB) -PASS -- TEST 'control_debug_p8_intel' [03:28, 02:03](2551 MB) -PASS -- TEST 'regional_debug_intel' [13:36, 11:52](1642 MB) -PASS -- TEST 'rap_control_debug_intel' [05:17, 03:31](1881 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:28](1874 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:37](1885 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:38](1879 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1876 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:47](1957 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:36](1874 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:38](1881 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:35](1879 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:29](1884 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:27](1868 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:37](1872 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 05:41](1872 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:38](1882 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:31](1868 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 05:59](1876 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:13] ( 864 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:53, 09:09](2317 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:34] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 02:38](1481 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:21, 02:21](1725 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:17](1701 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:24, 01:55](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 01:50](1053 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:23, 02:27](1679 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:25, 01:18](1645 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:17](1635 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:10, 05:33] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:46, 14:07](1772 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:50](1809 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:38, 02:00](1815 MB) -PASS -- TEST 'conus13km_restart_intel' [08:36, 06:50](1563 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:40] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 02:52](1802 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:11] ( 797 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:25](1750 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:23](1757 MB) -PASS -- TEST 'conus13km_debug_intel' [16:38, 14:56](1847 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:37, 14:45](1468 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:26](1832 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:34, 14:25](1876 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:34, 14:59](1909 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 02:17] ( 797 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 03:46](1859 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 08:12] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:36, 02:36](1209 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:51, 04:14](1412 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:36](1468 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:41, 04:32](1317 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:37, 31:50](1343 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:15, 23:06](1385 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:15](801 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:33, 03:56](813 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:34](545 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:54, 04:18](619 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:30](757 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:08](765 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 02:38](806 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:47](529 MB) -PASS -- TEST 'gnv1_nested_intel' [04:44, 02:33](1769 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:35] ( 1504 warnings 2058 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:09](743 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 08:05] ( 1 warnings 661 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [32:31, 29:15](892 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:40, 27:41](1071 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:52] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:18, 18:14](1106 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:45] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:34, 04:00](1311 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 04:01](1323 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:42, 11:36](1818 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:12] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:03](1931 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:19, 07:53](1892 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:15, 13:23](1202 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 01:47](1191 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:15, 12:58](1208 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:16, 13:09](1945 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:15, 13:06](1951 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 01:53](1201 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:32](1838 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:56, 05:26](1371 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 13:17](1951 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [16:16, 14:38](4790 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [17:16, 15:33](4790 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:40] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 04:01](1843 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:14] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:01](1931 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:43] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:45](365 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:32](621 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:23](622 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:10, 06:07] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:40](2834 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:47] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:34, 03:37](2867 MB) - -PASS -- COMPILE 'atml_intel' [08:17, 06:34] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:34, 02:32](1920 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:29, 01:25](1311 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:17, 03:25] ( 912 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:42](1941 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 07:48] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:57](2700 MB) - -PASS -- COMPILE 'atmaero_intel' [07:10, 05:45] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:39, 03:10](2016 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 03:35](2397 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:27](2421 MB) - -PASS -- COMPILE 'atmaq_intel' [07:10, 05:35] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:27, 11:22](2876 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:25, 13:08](2876 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:16] ( 881 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:14, 26:59](2887 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:26] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:42](1139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:21] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:46, 11:58](2053 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:35] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:41, 13:14](2082 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:12, 12:42] -PASS -- TEST 'cpld_control_sfs_intelllvm' [14:32, 12:38](2008 MB) - -PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:19] -PASS -- TEST 'cpld_control_p8_intelllvm' [09:54, 07:38](2468 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:34] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:24, 03:52](1813 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:13, 05:33] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:26, 02:50](1805 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:13, 08:06] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:35, 02:36](811 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:11, 02:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:27, 08:08](738 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:33] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:15, 01:59](1941 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:16] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [14:15, 12:44](1839 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:00] -PASS -- TEST 'control_c48_gnu' [08:18, 06:19](1514 MB) -PASS -- TEST 'control_stochy_gnu' [03:16, 02:00](515 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 03:05](520 MB) -PASS -- TEST 'control_p8_gnu' [04:38, 03:02](1442 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:34, 02:58](1463 MB) -PASS -- TEST 'control_flake_gnu' [06:18, 04:08](560 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:49] -PASS -- TEST 'rap_control_gnu' [16:26, 14:53](853 MB) -PASS -- TEST 'rap_decomp_gnu' [05:26, 03:36](879 MB) -PASS -- TEST 'rap_2threads_gnu' [05:23, 02:42](912 MB) -PASS -- TEST 'rap_restart_gnu' [03:24, 01:57](580 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:28](852 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [21:26, 19:39](853 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:26, 01:51](580 MB) -PASS -- TEST 'hrrr_control_gnu' [19:24, 17:13](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:25, 06:55](840 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:25, 02:35](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:21, 06:17](855 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:50](580 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:19, 01:45](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:15](850 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:40] -PASS -- TEST 'control_csawmg_gnu' [07:26, 05:43](757 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:03] -PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:21](1285 MB) -PASS -- TEST 'regional_debug_gnu' [25:28, 24:09](765 MB) -PASS -- TEST 'rap_control_debug_gnu' [06:17, 04:31](861 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:45](863 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:54](865 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:47](865 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:29](946 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:55](860 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:59](861 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:09](505 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:31](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:45, 01:31](1451 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:29, 01:51](861 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 01:49](863 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:33, 02:56](873 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:27] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:34](1310 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:32] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 02:08](741 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:47] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:21](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:21, 03:10](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:36](738 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:25](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:21, 03:26](712 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:47](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 01:46](558 MB) -PASS -- TEST 'conus13km_control_gnu' [04:42, 03:06](905 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:32, 01:11](909 MB) -PASS -- TEST 'conus13km_decomp_gnu' [04:34, 03:01](909 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:32, 01:41](587 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:17, 06:07] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:45](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 04:57] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:50](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:59](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:33, 07:13](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:34, 07:00](649 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:32, 04:15](924 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [24:33, 22:22](916 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:32, 06:56](991 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 04:59] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](744 MB) - -PASS -- COMPILE 's2swa_gnu' [12:10, 11:05] -PASS -- TEST 'cpld_control_p8_gnu' [09:56, 07:45](1608 MB) - -PASS -- COMPILE 's2s_gnu' [12:10, 10:31] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:47, 07:22](1561 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:13, 02:05] -PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:50](1614 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:41, 09:08](1592 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:51] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:39, 06:39](1559 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:16, 10:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [19:14, 17:27](1511 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' [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: 20251022 05:10:42 -Ending Date/Time: 20251022 06:56:31 -Total Time: 01h:46m:21s -Compiles Completed: 70/70 -Tests Completed: 282/283 -Failed Tests: -* TEST regional_noquilt_intel: FAILED: TEST TIMED OUT --- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1052390/regional_noquilt_intel/err - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF URSA REGRESSION TESTING LOG==== -====START OF URSA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -6c2d8892c714b0749d334dd0d44fd3bfdcae86f0 - -Submodule hashes used in testing: - 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) - 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) - 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) - 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) - 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) - 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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251021 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_165956 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: regional_noquilt -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:22] ( 1 warnings 502 remarks ) -PASS -- TEST 'regional_noquilt_intel' [05:28, 03:33](1991 MB) - -SYNOPSIS: -Starting Date/Time: 20251022 14:48:49 -Ending Date/Time: 20251022 15:03:48 -Total Time: 00h:15m:05s -Compiles Completed: 1/1 -Tests Completed: 1/1 +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 07f1576338..d7225a6927 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b934413511cea07cfe4e70406326d234fc72cfc +97492dc15ca61685c8bc5f49ff3d3a0b3b930292 Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -15,13 +15,13 @@ 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) + 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) + 6d4dc071df9c5ac93cff31d5df4c72d2e3091b74 UFSATM (remotes/origin/moorthi_cover) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) + 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) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 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,347 +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-20251021 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3157487 +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:32, 11:40] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 06:51](3348 MB) -PASS -- TEST 'cpld_control_gefs_intel' [36:50, 19:24](4113 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [33:39, 11:01](3916 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:34, 12:58] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:55, 15:31](1904 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:46, 17:48](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:04, 07:52](1072 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:57, 08:02](1930 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:10, 17:58](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:32, 13:18] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:54, 16:07](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:26, 05:09] ( 1539 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:29, 21:30](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:32, 11:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:09, 08:25](3382 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:36, 08:43](3383 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:05, 05:53](3266 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:44](3411 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:35, 05:39](3293 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 07:58](3623 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:17](3374 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:19, 07:08](3331 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:35, 08:40](3384 MB) - -PASS -- COMPILE 's2swal_intel' [14:34, 12:16] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:38, 08:42](3341 MB) - -PASS -- COMPILE 's2sw_intel' [13:32, 11:06] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 05:11](1927 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:24, 07:24](1976 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:31, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:19, 05:27](1980 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:39, 16:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:37, 08:50](3383 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:34, 12:52] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:05, 15:45](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:36, 08:21](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:55, 18:13](1895 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:51, 06:39](2888 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:47, 02:45](2896 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:44, 02:05](2314 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:10, 01:59](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:10, 01:18](2115 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:56, 01:09](1490 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:10, 02:00](2109 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:10, 01:23](2112 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:56, 01:14](1488 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:09, 01:22](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:09, 01:21](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:56, 01:23](1396 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:58] ( 1539 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:19, 24:09](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:32, 09:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:44, 04:31](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:52, 02:47](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:57, 02:56](1591 MB) -PASS -- TEST 'control_latlon_intel' [04:45, 02:45](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:53](1590 MB) -PASS -- TEST 'control_c48_intel' [09:20, 06:54](1602 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:11, 06:17](723 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:19, 07:07](1604 MB) -PASS -- TEST 'control_c192_intel' [11:22, 08:04](1709 MB) -PASS -- TEST 'control_c384_intel' [15:01, 10:48](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [18:31, 11:02](1187 MB) -PASS -- TEST 'control_stochy_intel' [04:43, 02:14](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:17, 02:16](405 MB) -PASS -- TEST 'control_lndp_intel' [04:53, 02:16](647 MB) -PASS -- TEST 'control_iovr4_intel' [06:00, 03:02](639 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:49, 04:08](918 MB) -PASS -- TEST 'control_iovr5_intel' [05:55, 02:55](637 MB) -PASS -- TEST 'control_p8_intel' [08:49, 04:26](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:59, 04:14](1867 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:29, 04:05](1869 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:23, 03:55](1883 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:41, 05:44](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:04, 03:37](2441 MB) -PASS -- TEST 'control_restart_p8_intel' [06:50, 02:18](1016 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:46, 04:41](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:00, 02:29](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:40, 04:35](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:58, 03:58](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:13, 06:04](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:51](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:45, 04:03](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [08:26, 04:10](1870 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:26, 06:18](1876 MB) -PASS -- TEST 'regional_control_intel' [08:38, 05:48](873 MB) -PASS -- TEST 'regional_restart_intel' [06:10, 03:49](885 MB) -PASS -- TEST 'regional_decomp_intel' [09:27, 06:05](875 MB) -PASS -- TEST 'regional_2threads_intel' [07:28, 03:58](991 MB) -PASS -- TEST 'regional_noquilt_intel' [08:06, 06:01](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:08, 06:03](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 05:44](876 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_wofs_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [10:28, 09:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:46, 04:40](1890 MB) - -PASS -- COMPILE 'rrfs_intel' [10:29, 08:31] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:21, 04:23](1019 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:59, 04:45](1215 MB) -PASS -- TEST 'rap_decomp_intel' [07:35, 04:19](1016 MB) -PASS -- TEST 'rap_2threads_intel' [07:34, 04:05](1095 MB) -PASS -- TEST 'rap_restart_intel' [08:12, 02:44](767 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:33, 04:56](1019 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 05:40](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:26, 02:36](768 MB) -PASS -- TEST 'hrrr_control_intel' [08:50, 04:55](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:38, 04:59](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:50, 04:21](1093 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:01, 02:51](765 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:41, 08:13](1010 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:54, 10:39](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:53, 09:46](1970 MB) - -PASS -- COMPILE 'csawmg_intel' [09:28, 07:50] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:58, 08:14](959 MB) -PASS -- TEST 'control_ras_intel' [06:42, 04:45](674 MB) - -PASS -- COMPILE 'wam_intel' [09:27, 07:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:48, 13:28](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:28, 08:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:02, 04:01](1863 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:25, 04:51] ( 892 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:44](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:46, 02:58](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:39, 03:31](828 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:38, 03:21](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:55, 05:10](1118 MB) -PASS -- TEST 'control_ras_debug_intel' [05:36, 03:25](836 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:34](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [07:07, 03:52](1909 MB) -PASS -- TEST 'regional_debug_intel' [21:30, 18:59](949 MB) -PASS -- TEST 'rap_control_debug_intel' [09:19, 06:07](1205 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:01, 05:43](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:19, 05:55](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:24, 05:57](1194 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:09, 05:51](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:37, 06:18](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:10, 06:13](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:43, 05:59](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:45, 05:47](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:47, 06:42](1202 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:43, 05:46](1202 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:58, 05:56](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:53, 09:51](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 06:16](1205 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:46, 05:57](1206 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:44, 10:34](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:23, 03:33] ( 850 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:35, 14:44](1708 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:55] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:46, 05:30](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 04:02](893 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:10, 04:13](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 03:52](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:36, 03:45](929 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:20, 03:53](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 02:13](737 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:52, 02:04](725 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:59] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:48, 03:29](1022 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:43, 01:51](1138 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:31, 03:15](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:24, 02:15](689 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:25, 08:11] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:11, 05:37](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:34] ( 783 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:41, 05:35](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:42, 05:46](1072 MB) -PASS -- TEST 'conus13km_debug_intel' [26:54, 23:49](1099 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:52, 24:11](818 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:49, 13:41](1220 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [26:46, 24:35](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:46, 24:07](1171 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:37] ( 783 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:58, 06:09](1108 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 10:04] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:28, 05:43](707 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:51, 07:40](922 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:54, 04:54](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:39](765 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:39, 13:31](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:14, 13:56](821 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:34, 06:07](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:37, 07:53](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:34](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:58, 10:33](423 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 04:23](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:27, 03:59](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:40, 05:47](554 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:46](412 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:19, 03:59] ( 1486 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:34, 14:26](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:28] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 08:15](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:27, 08:54](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:33] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:53, 06:31](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:26, 09:12] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:10, 07:28](762 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:53, 07:34](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 17:49](898 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:32, 10:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:33, 05:56](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:26, 09:42] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:21, 04:48] ( 897 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:25, 08:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:38, 06:00](3238 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:10, 06:30](3207 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:07, 05:52](3215 MB) - -PASS -- COMPILE 'atmaq_intel' [09:24, 08:05] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [25:32, 18:48](2391 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [28:12, 22:23](2437 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:19, 03:55] ( 867 warnings ) -FAILED: RUN DID NOT COMPLETE -- TEST 'regional_atmaq_debug_intel' [, ]( 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: 20251022 17:54:42 -Ending Date/Time: 20251022 20:57:16 -Total Time: 03h:04m:19s -Compiles Completed: 35/35 -Tests Completed: 174/177 -Failed Tests: -* TEST regional_wofs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_wofs_intel.log -* TEST regional_control_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_control_faster_intel.log -* TEST regional_atmaq_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/WenMeng-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_regional_atmaq_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ea08443ee85dc1a93de32c94f89381c694d0a410 - -Submodule hashes used in testing: - 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) - 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) - 4cd340e45d6b3e002a44984cffc8ea2f82fcbc87 MOM6-interface/MOM6 (remotes/origin/fix_fpe_in_oda_incupd) - 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) - ccca6ee77689a4683aafaff2e59ab0e656c015ba UFSATM (remotes/origin/upp_gfs) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - cf752f71b838f3d78c49c449c60fc928e9c62a0d UFSATM/ccpp/physics (EP4-2008-gcf752f71) - 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) - 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) - 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251021 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1828815 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'regional_wofs_intel' [09:56, 07:16](1610 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'regional_control_faster_intel' [08:03, 05:19](878 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:37] ( 867 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:42, 40:39](1959 MB) - -SYNOPSIS: -Starting Date/Time: 20251023 13:29:32 -Ending Date/Time: 20251023 14:21:50 -Total Time: 00h:53m:11s -Compiles Completed: 3/3 -Tests Completed: 3/3 +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/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/test_changes.list b/tests/test_changes.list index 97cfa6fe5a..183879e686 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,22 +1,49 @@ +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 -control_flake 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_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr4_gfdlmpv3 intel -control_iovr5 intel control_p8 intel control_p8.v2.sfc intel control_p8_ugwpv1 intel @@ -29,77 +56,37 @@ control_restart_noqr_p8 intel control_decomp_p8 intel control_2threads_p8 intel control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel merra2_thompson intel merra2_hf_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_2dwrtdecomp intel -regional_wofs intel -control_p8_rrtmgp_rad32 intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_csawmg intel -control_ras intel +control_wam intel control_p8_faster intel -regional_control_faster intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -rap_control_dyn64_phy32 intel -hafs_global_multiple_4nests_atm 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 -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -control_stochy gnu -control_ras gnu +cpld_control_p8 intelllvm +control_c48 gnu control_p8 gnu control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_csawmg gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -rap_control_dyn64_phy32 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 From 9d5d39bc21ca161dc51e21a7936da9de2e5777c0 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 28 Oct 2025 00:24:17 -0400 Subject: [PATCH 46/48] update input data labels --- .github/workflows/update_project_labels.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 2a8df5f354..98f8ded859 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -72,28 +72,28 @@ jobs: pull-requests: write issues: write steps: - - name: New input data required + - name: Additions to current input-data directory required if: | - contains(github.event.pull_request.labels.*.name, 'New Input Data') && - !contains(github.event.pull_request.labels.*.name, 'Updated Input Data') + 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: 'New' - - name: Updated input data required + field-value: 'Adds' + - name: New input-data directory required if: | - contains(github.event.pull_request.labels.*.name, 'Updated Input Data') && - !contains(github.event.pull_request.labels.*.name, 'New Input Data') + 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: 'Updated' + field-value: 'Create New' - name: No input data changes if: | (!contains(github.event.pull_request.labels.*.name, 'Updated Input Data')) && From 2c846631d13608629422c647377fd0719f8249a8 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 28 Oct 2025 00:37:07 -0400 Subject: [PATCH 47/48] change missed input data labels --- .github/workflows/update_project_labels.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 98f8ded859..576ac5e523 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -97,7 +97,7 @@ jobs: - name: No input data changes if: | (!contains(github.event.pull_request.labels.*.name, 'Updated Input Data')) && - (!contains(github.event.pull_request.labels.*.name, 'New 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 @@ -107,8 +107,8 @@ jobs: field-value: 'None' - name: Contradictory labels if: | - contains(github.event.pull_request.labels.*.name, 'Updated Input Data') && - contains(github.event.pull_request.labels.*.name, 'New Input Data') + 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 From 747a2bbeef9b1666e014b12f2827d4e15b76577a Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Tue, 28 Oct 2025 00:43:24 -0400 Subject: [PATCH 48/48] change missed input data labels --- .github/workflows/update_project_labels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_project_labels.yaml b/.github/workflows/update_project_labels.yaml index 576ac5e523..3c356bf2e7 100644 --- a/.github/workflows/update_project_labels.yaml +++ b/.github/workflows/update_project_labels.yaml @@ -96,7 +96,7 @@ jobs: field-value: 'Create New' - name: No input data changes if: | - (!contains(github.event.pull_request.labels.*.name, 'Updated Input Data')) && + (!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: