From 219dd7e7ffe1a28f1e04a21cc7659d27e0a25eb8 Mon Sep 17 00:00:00 2001 From: Gillian Petro Date: Sun, 28 Sep 2025 05:32:28 -0400 Subject: [PATCH 01/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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 6ae4a01be30900f96699a240d91c8e357a74e331 Mon Sep 17 00:00:00 2001 From: Michael Barlage Date: Tue, 30 Sep 2025 07:06:10 -0600 Subject: [PATCH 32/39] Glacier modifications in NoahMP to address GFSv17 biases (#2886) Modify NoahMP glacier code and initialization to address forecast biases (#2886) * UFSWM - point to updated UFSATM * FV3 - point to updated ccpp-physics * ccpp-physics - update noahmp glacier physics and init code --- UFSATM | 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 | 564 +++++------ tests/logs/RegressionTests_gaeac6.log | 596 +++++------ tests/logs/RegressionTests_hera.log | 784 +++++++-------- tests/logs/RegressionTests_hercules.log | 794 +++++++-------- tests/logs/RegressionTests_orion.log | 614 ++++++------ tests/logs/RegressionTests_ursa.log | 930 ++++++++---------- tests/logs/RegressionTests_wcoss2.log | 502 +++++----- tests/run_test.sh | 4 +- tests/test_changes.list | 101 ++ tests/tests/cpld_control_gfsv17 | 2 + tests/tests/cpld_control_gfsv17_iau | 3 + tests/tests/cpld_debug_gfsv17 | 3 + tests/tests/cpld_mpi_gfsv17 | 3 + tests/tests/cpld_restart_gfsv17 | 3 + 19 files changed, 2525 insertions(+), 2484 deletions(-) diff --git a/UFSATM b/UFSATM index 0e381d5004..a19dcd8878 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 0e381d5004c605f9da145254d18c5c3a8e4007e4 +Subproject commit a19dcd8878e117d421e9634d8640a446f2d3f2d4 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 69cd0e445e..0b713ff5c4 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20250918 +export BL_DATE=20250926 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 3f6dca86d1..a4955cd339 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Sep 22 19:51:34 UTC 2025 +Fri Sep 26 17:33:20 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_1471512/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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.267939 - 0: The maximum resident set size (KB) = 1554500 + 0: The total amount of wall time = 252.238268 + 0: The maximum resident set size (KB) = 1567616 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_1471512/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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 = 867.136896 - 0: The maximum resident set size (KB) = 1516764 + 0: The total amount of wall time = 883.979371 + 0: The maximum resident set size (KB) = 1539928 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_1471512/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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.777888 - 0: The maximum resident set size (KB) = 1533512 + 0: The total amount of wall time = 229.449231 + 0: The maximum resident set size (KB) = 1537776 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_1471512/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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 = 225.424596 - 0: The maximum resident set size (KB) = 1546832 + 0: The total amount of wall time = 225.564772 + 0: The maximum resident set size (KB) = 1545868 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_1471512/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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 = 227.432891 - 0: The maximum resident set size (KB) = 1535500 + 0: The total amount of wall time = 226.686440 + 0: The maximum resident set size (KB) = 1545180 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_1471512/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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 = 225.728863 - 0: The maximum resident set size (KB) = 1524472 + 0: The total amount of wall time = 227.696146 + 0: The maximum resident set size (KB) = 1520100 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_1471512/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3105650/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 = 235.006904 - 0: The maximum resident set size (KB) = 1556768 + 0: The total amount of wall time = 225.980725 + 0: The maximum resident set size (KB) = 1525128 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 22 20:56:04 UTC 2025 -Elapsed time: 01h:04m:30s. Have a nice day! +Fri Sep 26 18:38:46 UTC 2025 +Elapsed time: 01h:05m:26s. 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 8e00a15010..6eb446548d 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 Sep 22 18:20:08 UTC 2025 +Fri Sep 26 16:08:02 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_1306183/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1650304/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 = 2230.737067 - 0: The maximum resident set size (KB) = 1638928 + 0: The total amount of wall time = 2303.412957 + 0: The maximum resident set size (KB) = 1638636 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_1306183/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1650304/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 = 573.710073 - 0: The maximum resident set size (KB) = 1641604 + 0: The total amount of wall time = 591.103054 + 0: The maximum resident set size (KB) = 1651416 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_1306183/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1650304/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.339472 - 0: The maximum resident set size (KB) = 1642036 + 0: The total amount of wall time = 577.610941 + 0: The maximum resident set size (KB) = 1651444 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 22 19:51:34 UTC 2025 -Elapsed time: 01h:31m:26s. Have a nice day! +Fri Sep 26 17:33:20 UTC 2025 +Elapsed time: 01h:25m:18s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c3bb4b4a63..a051531626 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Sep 22 17:26:55 UTC 2025 +Fri Sep 26 15:14:59 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_1186506/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_976059/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 = 623.840665 - 0: The maximum resident set size (KB) = 890848 + 0: The total amount of wall time = 619.576254 + 0: The maximum resident set size (KB) = 885380 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_1186506/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_976059/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 = 493.863496 - 0: The maximum resident set size (KB) = 846276 + 0: The total amount of wall time = 495.569593 + 0: The maximum resident set size (KB) = 854412 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_1186506/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_976059/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 = 493.247355 - 0: The maximum resident set size (KB) = 864340 + 0: The total amount of wall time = 490.978149 + 0: The maximum resident set size (KB) = 841936 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_1186506/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_976059/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 = 490.955676 - 0: The maximum resident set size (KB) = 853508 + 0: The total amount of wall time = 493.580164 + 0: The maximum resident set size (KB) = 876664 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 22 18:20:08 UTC 2025 -Elapsed time: 00h:53m:14s. Have a nice day! +Fri Sep 26 16:08:02 UTC 2025 +Elapsed time: 00h:53m:04s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index be46c4030c..73f7a30deb 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: -523a632f4ff1261efae0ca2e49aa5db04a79ab5b +da282905810dba20995a517818996e4ba66d8f33 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,292 +40,292 @@ 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-20250918 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3277130 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2678762 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:58] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:43](3329 MB) -PASS -- TEST 'cpld_control_gefs_intel' [23:12, 16:10](4124 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:12, 07:36](3919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 12:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:44, 15:08](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:22, 16:34](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:11, 07:16](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:21, 07:33](1932 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [57:04, 17:32](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 12:36] ( 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:43, 15:24](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:12] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:15, 20:42](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 12:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:15, 08:21](3371 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:38, 08:08](3363 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:21, 04:40](3247 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:03, 08:14](3387 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:33, 04:48](3268 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:21, 07:36](3589 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:56, 08:07](3359 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:52, 07:05](3309 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:26, 08:23](3369 MB) - -PASS -- COMPILE 's2swal_intel' [13:27, 11:57] ( 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:35, 08:19](3369 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [28:54, 04:52](3244 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:16, 08:18](3338 MB) - -PASS -- COMPILE 's2sw_intel' [13:27, 11:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:50, 04:56](1927 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 07:08](1971 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:42] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:58, 04:58](1977 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:25] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:17, 08:14](3365 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 12:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:18, 15:06](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 07:24](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:35, 17:28](1895 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:42, 06:14](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:37, 02:03](2895 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:14, 01:26](2315 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:03, 01:26](2114 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:03, 00:57](2110 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:45, 00:48](1461 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:04, 01:19](2111 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:03, 00:52](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:45, 00:51](1459 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:03, 00:56](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:02, 00:49](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:46, 00:50](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:40] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:25, 24:01](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:37] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:43, 04:04](682 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:43, 02:34](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:55, 02:49](1584 MB) -PASS -- TEST 'control_latlon_intel' [14:44, 02:41](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:58, 02:42](1584 MB) -PASS -- TEST 'control_c48_intel' [10:48, 06:41](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:53, 06:03](719 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:55, 06:51](1598 MB) -PASS -- TEST 'control_c192_intel' [15:04, 07:24](1706 MB) -PASS -- TEST 'control_c384_intel' [11:15, 08:48](2000 MB) -PASS -- TEST 'control_c384gdas_intel' [20:53, 09:19](1172 MB) -PASS -- TEST 'control_stochy_intel' [07:40, 01:55](633 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:37, 01:20](403 MB) -PASS -- TEST 'control_lndp_intel' [07:41, 01:48](637 MB) -PASS -- TEST 'control_iovr4_intel' [08:40, 02:38](633 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:56, 03:14](920 MB) -PASS -- TEST 'control_iovr5_intel' [07:38, 02:47](633 MB) -PASS -- TEST 'control_p8_intel' [09:14, 03:05](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:19, 03:19](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:18, 03:03](1863 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:22, 03:01](1879 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:46, 03:14](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [20:59, 02:20](2434 MB) -PASS -- TEST 'control_restart_p8_intel' [05:40, 01:55](1008 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:34, 03:04](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:04, 01:52](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:48, 03:14](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:42, 02:56](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:03, 05:15](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:16, 04:23](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:14, 03:18](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [09:43, 03:42](1866 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:25, 04:44](1871 MB) -PASS -- TEST 'regional_control_intel' [07:57, 05:13](878 MB) -PASS -- TEST 'regional_restart_intel' [04:56, 02:58](881 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:34](875 MB) -PASS -- TEST 'regional_2threads_intel' [06:52, 03:13](988 MB) -PASS -- TEST 'regional_noquilt_intel' [07:53, 05:22](1169 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:17](877 MB) -PASS -- TEST 'regional_wofs_intel' [09:53, 07:00](1609 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:32] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:32, 04:15](1013 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:29, 04:25](1214 MB) -PASS -- TEST 'rap_decomp_intel' [07:38, 04:12](1006 MB) -PASS -- TEST 'rap_2threads_intel' [07:36, 03:49](1093 MB) -PASS -- TEST 'rap_restart_intel' [10:28, 02:22](763 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:44, 04:10](1012 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 04:18](1011 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:25, 02:21](765 MB) -PASS -- TEST 'hrrr_control_intel' [08:18, 03:53](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:26, 04:06](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:27, 03:32](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:38, 02:11](759 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:15, 07:14](1007 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:42, 09:24](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:43, 09:08](1965 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:49] -PASS -- TEST 'control_csawmg_intel' [10:55, 06:45](961 MB) -PASS -- TEST 'control_ras_intel' [07:34, 03:29](668 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 07:47] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:15, 12:19](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:18, 03:09](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:50, 05:01](880 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:18, 04:47] ( 887 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:48, 02:40](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:55, 02:55](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:42, 03:42](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:42, 03:11](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:03, 04:49](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [13:40, 03:15](828 MB) -PASS -- TEST 'control_diag_debug_intel' [14:54, 03:20](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [09:59, 03:17](1904 MB) -PASS -- TEST 'regional_debug_intel' [21:09, 18:24](932 MB) -PASS -- TEST 'rap_control_debug_intel' [11:38, 05:50](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:41, 05:39](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:43, 05:38](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:43, 05:48](1194 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:41, 05:47](1196 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:49, 06:03](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:39, 05:48](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:35, 05:50](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:38, 05:47](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:38, 05:46](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:39, 05:35](1190 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:39, 05:52](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:42, 09:09](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:39, 05:46](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:39, 05:40](1195 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:36, 09:39](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:33] ( 845 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [23:22, 14:23](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:21, 04:07](1043 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:26, 03:29](896 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:15, 03:22](889 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:16, 03:03](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:53, 03:07](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:50, 03:31](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:08, 01:56](728 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:01](727 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:17, 03:04](1019 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:59, 01:16](1145 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:01, 02:51](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [03:58, 01:47](691 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:58, 04:15](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:17, 03:35] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:39, 05:37](1077 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:39, 05:22](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [26:31, 23:58](1102 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:39, 24:20](813 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:13, 13:38](1213 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [27:29, 24:38](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:26, 23:57](1147 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 03:31] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:35, 05:37](1109 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:56] ( 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:44, 04:26](705 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [13:07, 04:37](917 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:49, 03:46](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:04, 06:42](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:57, 11:39](906 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:25, 12:52](812 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:15, 05:26](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:59, 06:42](469 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [17:20, 03:07](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:30, 07:46](424 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:02, 03:52](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:08, 03:36](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:42, 04:32](554 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:46, 01:40](405 MB) -PASS -- TEST 'gnv1_nested_intel' [08:08, 03:44](1703 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:06] ( 1481 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [32:37, 14:16](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:18] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:51, 07:15](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:58, 07:20](781 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:46] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [45:16, 05:22](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:25, 09:09] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:50, 06:16](757 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:48, 06:19](738 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:36, 16:16](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:25, 09:31] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:16](1565 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 02:12](1568 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:50](685 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:58](686 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:59](684 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:14](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 03:10](1567 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 02:47](686 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:32, 07:19](1366 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:34, 07:07](703 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:09](1565 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:33, 05:27](4519 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:28](4521 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:25, 09:26] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:13](1565 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:16, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:45, 01:02](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:39, 00:55](438 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [19:53, 00:45](437 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:26, 10:12] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:40, 03:50](1911 MB) - -PASS -- COMPILE 'atml_intel' [16:30, 09:23] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [14:27, 03:25](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:13, 02:08](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:24, 04:24] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:30, 05:36](1912 MB) - -PASS -- COMPILE 'atmw_intel' [14:27, 08:31] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [11:13, 02:03](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:18] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:58, 04:33](3239 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:43, 05:09](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:45, 05:21](3126 MB) - -PASS -- COMPILE 'atmaq_intel' [09:23, 07:49] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [26:55, 15:29](2393 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [30:48, 18:46](2439 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:39] ( 870 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [53:08, 40:23](1976 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:27, 12:19] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:14, 06:24](3330 MB) +PASS -- TEST 'cpld_control_gefs_intel' [30:56, 16:10](4117 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [32:17, 07:32](3923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:39, 13:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:24, 15:01](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:33, 16:30](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 07:28](1072 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:17, 07:30](1933 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:29, 17:27](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:39, 13:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:37, 15:19](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:33, 04:58] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:01, 20:07](1943 MB) + +PASS -- COMPILE 's2swa_intel' [24:40, 12:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [27:42, 08:11](3364 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:03, 08:11](3368 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:24, 04:44](3246 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:40, 08:06](3385 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:25, 04:39](3268 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:13, 07:29](3587 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:54, 07:58](3364 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:39, 06:43](3310 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:00, 08:14](3364 MB) + +PASS -- COMPILE 's2swal_intel' [24:40, 12:00] ( 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [28:00, 08:12](3365 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:26, 04:49](3248 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:43, 08:06](3335 MB) + +PASS -- COMPILE 's2sw_intel' [24:40, 11:09] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:01, 04:43](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:39, 07:01](1972 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [23:37, 10:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:51, 04:54](1976 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:45, 16:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:24, 07:57](3362 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:40, 12:02] ( 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:22, 14:59](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 07:21](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:21, 17:27](1896 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:50, 05:59](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:49, 01:57](2895 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:07, 01:13](2308 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:14, 01:12](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:13, 01:01](2110 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:44, 00:44](1458 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:13, 01:19](2107 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:12, 00:52](2109 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:44, 00:42](1460 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:12, 00:46](2038 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:12, 00:52](2042 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:46, 00:43](1394 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:41] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 23:50](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:33] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [21:53, 04:01](678 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [21:56, 02:41](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:05, 02:43](1585 MB) +PASS -- TEST 'control_latlon_intel' [22:53, 02:48](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:09, 02:45](1583 MB) +PASS -- TEST 'control_c48_intel' [09:45, 06:33](1595 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:46, 06:08](721 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:47, 06:54](1596 MB) +PASS -- TEST 'control_c192_intel' [24:08, 07:32](1703 MB) +PASS -- TEST 'control_c384_intel' [42:36, 08:46](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [51:13, 09:22](1185 MB) +PASS -- TEST 'control_stochy_intel' [12:41, 01:52](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:35, 01:07](403 MB) +PASS -- TEST 'control_lndp_intel' [12:38, 01:52](636 MB) +PASS -- TEST 'control_iovr4_intel' [12:42, 02:39](633 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [13:05, 03:01](919 MB) +PASS -- TEST 'control_iovr5_intel' [11:43, 02:42](634 MB) +PASS -- TEST 'control_p8_intel' [13:17, 03:01](1866 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:16, 03:14](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:23, 03:01](1866 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:23, 03:07](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:39, 03:06](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:46, 02:22](2436 MB) +PASS -- TEST 'control_restart_p8_intel' [04:29, 01:47](1006 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:32, 03:01](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:12, 01:56](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:35, 03:07](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:09, 02:51](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:04, 05:12](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:16, 04:12](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:08, 03:17](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [10:37, 03:38](1867 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:20, 04:47](1873 MB) +PASS -- TEST 'regional_control_intel' [07:53, 05:10](876 MB) +PASS -- TEST 'regional_restart_intel' [04:53, 02:49](883 MB) +PASS -- TEST 'regional_decomp_intel' [08:50, 05:25](875 MB) +PASS -- TEST 'regional_2threads_intel' [06:49, 03:13](990 MB) +PASS -- TEST 'regional_noquilt_intel' [07:51, 05:09](1166 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:09](877 MB) +PASS -- TEST 'regional_wofs_intel' [08:52, 07:01](1613 MB) + +PASS -- COMPILE 'rrfs_intel' [10:22, 08:28] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:16, 04:05](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:21, 04:14](1203 MB) +PASS -- TEST 'rap_decomp_intel' [07:24, 04:11](1010 MB) +PASS -- TEST 'rap_2threads_intel' [07:24, 03:41](1088 MB) +PASS -- TEST 'rap_restart_intel' [07:17, 02:21](764 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:29, 04:06](1013 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 04:15](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:18, 02:24](763 MB) +PASS -- TEST 'hrrr_control_intel' [07:52, 03:56](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 04:06](1010 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:26](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:38, 02:12](756 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:14, 07:21](1010 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 09:28](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 09:04](1966 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:41] +PASS -- TEST 'control_csawmg_intel' [09:55, 06:38](958 MB) +PASS -- TEST 'control_ras_intel' [05:32, 03:29](670 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:11, 12:28](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 07:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:10, 03:03](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:53, 04:55](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:45] ( 887 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:37, 02:36](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:43](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:38](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:33, 03:21](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:47](1118 MB) +PASS -- TEST 'control_ras_debug_intel' [06:32, 03:09](832 MB) +PASS -- TEST 'control_diag_debug_intel' [07:41, 03:09](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [08:58, 03:04](1906 MB) +PASS -- TEST 'regional_debug_intel' [23:13, 18:06](937 MB) +PASS -- TEST 'rap_control_debug_intel' [10:39, 05:43](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:41, 05:31](1193 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:38, 05:35](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:39, 05:52](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:38, 05:44](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:44, 06:00](1291 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:38, 05:49](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:36, 05:49](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:37, 05:53](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 05:42](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:42, 05:36](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:37, 05:43](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:40, 09:04](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:38, 05:39](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:38, 05:40](1197 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:35, 09:44](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 03:28] ( 845 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [22:17, 14:37](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 07:43] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:25, 04:03](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:08, 03:36](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:55, 03:17](889 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:27, 03:07](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:56, 02:58](933 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:55, 03:35](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 02:02](731 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:37, 01:59](725 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:26, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:19, 02:59](1020 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:01, 01:12](1146 MB) +PASS -- TEST 'conus13km_decomp_intel' [09:04, 02:53](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [04:03, 01:51](691 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 07:58] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:59, 04:19](913 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:31] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:40, 05:33](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:25](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [29:29, 23:50](1105 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [29:26, 23:51](813 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [18:16, 13:22](1223 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [29:24, 24:19](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:22, 23:49](1170 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:28] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:37, 05:38](1111 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:42] ( 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [16:56, 04:28](705 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [21:15, 04:42](916 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:53, 03:38](1050 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:04, 06:47](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 11:41](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:11, 12:44](813 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:32](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:03, 06:44](469 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:28, 03:08](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:10, 07:44](428 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:03, 03:51](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:10, 03:39](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:29, 04:26](549 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:48, 01:36](403 MB) +PASS -- TEST 'gnv1_nested_intel' [09:21, 03:56](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:00] ( 1481 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:38, 14:14](650 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:26, 09:19] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 07:20](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:40, 07:19](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:26, 09:36] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:53, 05:26](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:26, 08:46] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:48, 06:14](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:47, 06:18](737 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:37, 16:12](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:26, 09:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:07](1567 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:28, 02:12](1565 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:50](683 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:27, 03:05](683 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 02:56](683 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:16](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:18](1568 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:56](687 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:32, 07:11](1366 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 07:00](702 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:13](1565 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:23](4521 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:28, 05:27](4519 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:13](1567 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:17, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:49, 01:05](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [12:42, 00:55](437 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:34, 00:46](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:27, 10:30] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:40, 04:02](1912 MB) + +PASS -- COMPILE 'atml_intel' [12:26, 09:20] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [16:27, 03:20](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 02:07](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:19, 04:17] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:28, 05:32](1910 MB) + +PASS -- COMPILE 'atmw_intel' [12:26, 08:37] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:07, 02:13](1885 MB) + +PASS -- COMPILE 'atmaero_intel' [12:26, 08:09] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:55, 04:37](3240 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:38, 05:04](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:41, 05:18](3129 MB) + +PASS -- COMPILE 'atmaq_intel' [09:23, 07:48] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [27:02, 15:26](2392 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:51, 18:19](2454 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 03:37] ( 870 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:10, 40:23](1972 MB) SYNOPSIS: -Starting Date/Time: 20250922 20:24:04 -Ending Date/Time: 20250922 23:26:34 -Total Time: 03h:03m:00s +Starting Date/Time: 20250929 15:36:34 +Ending Date/Time: 20250929 18:15:39 +Total Time: 02h:39m:35s Compiles Completed: 38/38 Tests Completed: 199/199 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 424af57986..575387a330 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: -6876aa44258f5b3cca1368dae70b3ff33ab8048e +d4eeb023bef9a3a10e1323812c7089df427d2ff7 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - 8c53a2fc71e30b056a5a76bd7e5403b1d98b961d CMEPS-interface/CMEPS (cmeps_v0.4.1-2335-g8c53a2fc) + 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) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,307 +40,307 @@ 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-20250918 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_225514 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3892237 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:13, 08:46] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 03:55](2033 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:14, 12:28] ( 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:35, 10:09](1921 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:36, 11:14](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:30, 04:56](1056 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:36, 11:16](1932 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:27, 11:49](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:13, 11:37] ( 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:24, 10:17](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:38] ( 1554 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:31, 12:43](1935 MB) - -PASS -- COMPILE 's2swa_intel' [10:13, 08:54] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:36, 05:01](2072 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:35, 04:59](2063 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:28, 02:43](1604 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:31, 05:03](2089 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 02:46](1464 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:32, 05:53](2233 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:32, 04:53](2061 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:30, 04:00](2019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:34, 05:00](2073 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:14, 05:30](2400 MB) - -PASS -- COMPILE 's2swal_intel' [10:13, 08:31] ( 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [10:35, 05:00](2083 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:31, 02:45](1614 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:32, 05:04](1917 MB) - -PASS -- COMPILE 's2sw_intel' [09:13, 08:10] ( 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:24, 02:59](1936 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:27, 04:27](1856 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:40] ( 1444 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:33, 08:26](2095 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:18] ( 1444 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:29, 03:46](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:13, 07:15] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 03:11](1990 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:14, 09:17] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 04:55](2062 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:14, 12:24] ( 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:36, 10:02](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:37, 04:58](1110 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:24, 11:42](1903 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [07:25, 04:13](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:21, 01:16](2874 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:21, 00:45](2290 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:18, 00:45](2097 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:19, 00:25](2093 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:18, 00:18](1442 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:20, 00:45](2096 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:18, 00:24](2094 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:18, 00:18](1445 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:19, 00:26](2030 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:18, 00:20](2029 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:20, 00:16](1376 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 03:25] ( 1554 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:32, 16:03](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:27] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:15, 02:31](534 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 01:35](1430 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 01:41](1438 MB) -PASS -- TEST 'control_latlon_intel' [05:17, 01:38](1433 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:41](1433 MB) -PASS -- TEST 'control_c48_intel' [06:18, 04:40](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:18](700 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:18, 04:47](1580 MB) -PASS -- TEST 'control_c192_intel' [07:19, 04:52](1699 MB) -PASS -- TEST 'control_c384_intel' [11:30, 09:45](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [13:00, 10:21](1192 MB) -PASS -- TEST 'control_stochy_intel' [05:15, 03:06](494 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:42](289 MB) -PASS -- TEST 'control_lndp_intel' [03:15, 01:08](488 MB) -PASS -- TEST 'control_iovr4_intel' [03:16, 01:45](490 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:18, 01:59](783 MB) -PASS -- TEST 'control_iovr5_intel' [03:16, 01:43](490 MB) -PASS -- TEST 'control_p8_intel' [03:23, 01:54](1731 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:31, 02:01](1731 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:24, 01:54](1730 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:24, 01:55](1743 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:25, 01:58](1757 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:25, 01:30](2436 MB) -PASS -- TEST 'control_restart_p8_intel' [03:20, 01:08](875 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:20, 01:54](1720 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:22, 01:08](878 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:20, 01:59](1719 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:19, 02:09](1809 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:18](1731 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:26, 07:31](1781 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:26, 02:02](1727 MB) -PASS -- TEST 'merra2_thompson_intel' [04:27, 02:17](1730 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:22, 03:54](1741 MB) -PASS -- TEST 'regional_control_intel' [05:17, 03:18](866 MB) -PASS -- TEST 'regional_restart_intel' [03:19, 01:50](888 MB) -PASS -- TEST 'regional_decomp_intel' [05:17, 03:25](870 MB) -PASS -- TEST 'regional_2threads_intel' [04:17, 02:35](1001 MB) -PASS -- TEST 'regional_noquilt_intel' [05:20, 03:17](1173 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:18](866 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:20, 03:17](866 MB) -PASS -- TEST 'regional_wofs_intel' [06:22, 04:18](1598 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 05:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:25, 02:40](876 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:47](1230 MB) -PASS -- TEST 'rap_decomp_intel' [04:20, 02:45](875 MB) -PASS -- TEST 'rap_2threads_intel' [05:21, 03:06](947 MB) -PASS -- TEST 'rap_restart_intel' [03:23, 01:26](738 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:24, 02:37](872 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:19, 02:43](872 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:24, 03:24](736 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 02:33](865 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:38](871 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:18, 02:56](939 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:22](696 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:24, 04:42](867 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:17, 05:56](1820 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:20, 05:43](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [07:12, 05:24] -PASS -- TEST 'control_csawmg_intel' [06:20, 04:10](825 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:12](524 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:33] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:28, 07:36](1518 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 05:52] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:28, 01:57](1726 MB) -PASS -- TEST 'regional_control_faster_intel' [05:22, 03:09](855 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:24] ( 902 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:20, 04:08](1451 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:23, 01:35](1460 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:18, 02:04](662 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 01:55](658 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:20, 02:50](968 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 01:56](667 MB) -PASS -- TEST 'control_diag_debug_intel' [07:20, 01:50](1520 MB) -PASS -- TEST 'control_debug_p8_intel' [07:21, 01:47](1754 MB) -PASS -- TEST 'regional_debug_intel' [17:23, 11:13](906 MB) -PASS -- TEST 'rap_control_debug_intel' [09:18, 03:28](1052 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:18, 03:16](1042 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:21](1048 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:21](1046 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:21](1046 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:29](1131 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:30](1046 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:26](1044 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:21](1045 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:19](1046 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:17](1046 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:24](1048 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:16](1045 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:22](1049 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:22](1044 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:47](1052 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:09] ( 859 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:21, 08:37](1537 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:33, 02:36](1065 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 02:16](751 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:11](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:21, 02:40](799 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:33](790 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:18](748 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:19, 01:14](638 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:12](626 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:28, 01:50](1033 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:53](1049 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:21, 01:50](1035 MB) -PASS -- TEST 'conus13km_restart_intel' [02:18, 01:05](902 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:24, 02:44](788 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:14] ( 793 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:14](926 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:09](917 MB) -PASS -- TEST 'conus13km_debug_intel' [15:25, 13:41](1077 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 13:55](771 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:23, 12:37](1077 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:23, 14:19](1071 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 14:00](1138 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:17] ( 793 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:21](963 MB) - -PASS -- COMPILE 'hafsw_intel' [09:12, 07:48] ( 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:48](842 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:47, 03:52](1058 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:21](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:50, 04:44](909 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:45, 07:43](942 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:50, 08:08](960 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:41, 03:27](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:51, 04:28](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:31, 01:45](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:19, 04:42](431 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:32, 02:30](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:36, 02:19](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:33, 02:51](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:21, 00:58](428 MB) -PASS -- TEST 'gnv1_nested_intel' [04:52, 02:42](1695 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:12, 02:28] ( 1499 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:32, 08:08](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:56] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 04:41](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:38, 04:45](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 07:28] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:55, 03:24](799 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 08:15] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:45, 04:22](890 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:45, 04:23](864 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:37, 10:57](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:04](1560 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:22](1558 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:52](678 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:52](679 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:53](679 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:03](1560 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:02](1561 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:50](678 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:28, 04:58](1369 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:36](717 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:02](1560 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:47](4521 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:53](4518 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:35] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:10](1561 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:57] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:02](1558 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:56](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:42](440 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:32](440 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:10] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:30, 02:26](1791 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:12, 05:41] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:26, 03:08](1774 MB) - -PASS -- COMPILE 'atml_intel' [08:12, 06:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:28, 02:28](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:21, 02:30](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:11, 02:51] ( 907 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:26, 03:18](1904 MB) - -PASS -- COMPILE 'atmw_intel' [09:12, 07:21] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:16](1755 MB) - -PASS -- COMPILE 'atmaero_intel' [07:12, 05:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:40](1940 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:26, 03:07](1596 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:12](1595 MB) - -PASS -- COMPILE 'atmaq_intel' [07:12, 05:32] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:51, 12:37](2978 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:43, 14:31](2982 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:14] ( 884 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:49, 25:35](2999 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 05:58](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:21] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:29, 04:47](2021 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:43] ( 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:38, 09:57](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:34, 11:01](1934 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:29, 04:54](1070 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:32, 04:56](1916 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 11:32](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:41] ( 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:28, 10:08](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:29] ( 1554 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:30, 13:24](1931 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:31] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:30, 05:32](2072 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:36, 05:00](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:27, 02:45](1599 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:30, 05:04](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:28, 02:46](1454 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:28, 06:48](2215 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 05:42](2055 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:28, 04:00](2012 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:28, 04:58](2053 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:50, 05:28](2394 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:33] ( 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:30, 05:02](2072 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:33, 02:44](1594 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 06:00](1923 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:40] ( 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:24, 02:57](1942 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:31](1845 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:50] ( 1444 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:32, 08:08](2085 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:40] ( 1444 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:29, 03:50](1953 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:24, 04:15](1976 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:31] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:30, 04:51](2053 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:12, 13:33] ( 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:32, 10:07](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:27, 04:56](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:28, 11:46](1909 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:21, 04:15](2861 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:22, 01:16](2872 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:21, 00:46](2269 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:18, 00:45](2086 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:17, 00:25](2091 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:17, 00:19](1433 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:17, 00:45](2087 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:18, 00:24](2083 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:18, 00:19](1435 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:18, 00:26](2018 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:18, 00:20](2020 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:17, 00:16](1371 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:14] ( 1554 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:28, 16:05](1940 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:22] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:15, 02:32](528 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 01:36](1417 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 01:42](1427 MB) +PASS -- TEST 'control_latlon_intel' [03:14, 01:40](1428 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 01:41](1424 MB) +PASS -- TEST 'control_c48_intel' [06:19, 04:39](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:18](690 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:18, 04:47](1571 MB) +PASS -- TEST 'control_c192_intel' [06:21, 04:50](1685 MB) +PASS -- TEST 'control_c384_intel' [11:32, 09:49](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [13:04, 10:17](1182 MB) +PASS -- TEST 'control_stochy_intel' [03:15, 01:12](477 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](283 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:08](478 MB) +PASS -- TEST 'control_iovr4_intel' [03:17, 01:42](478 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:17, 02:01](774 MB) +PASS -- TEST 'control_iovr5_intel' [03:15, 01:45](477 MB) +PASS -- TEST 'control_p8_intel' [03:23, 01:54](1721 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:30, 02:03](1708 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:24, 01:55](1715 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:25, 01:55](1736 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:27, 02:01](1742 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:26, 01:28](2437 MB) +PASS -- TEST 'control_restart_p8_intel' [03:23, 01:10](860 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:22, 01:58](1711 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:23, 01:07](869 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:24, 01:57](1721 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:10](1798 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:20, 03:15](1716 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:37](1776 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:27, 02:00](1723 MB) +PASS -- TEST 'merra2_thompson_intel' [04:22, 02:17](1721 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:18, 03:55](1723 MB) +PASS -- TEST 'regional_control_intel' [05:19, 03:16](858 MB) +PASS -- TEST 'regional_restart_intel' [03:17, 01:47](883 MB) +PASS -- TEST 'regional_decomp_intel' [05:18, 03:28](862 MB) +PASS -- TEST 'regional_2threads_intel' [04:19, 02:34](999 MB) +PASS -- TEST 'regional_noquilt_intel' [05:18, 03:16](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:17](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:18](861 MB) +PASS -- TEST 'regional_wofs_intel' [06:21, 04:17](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [07:12, 05:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:19, 02:40](865 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:29, 02:42](1206 MB) +PASS -- TEST 'rap_decomp_intel' [05:20, 02:44](860 MB) +PASS -- TEST 'rap_2threads_intel' [05:22, 03:07](944 MB) +PASS -- TEST 'rap_restart_intel' [03:19, 01:27](729 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:19, 02:39](862 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:19, 02:45](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 01:26](728 MB) +PASS -- TEST 'hrrr_control_intel' [04:21, 02:34](855 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:35](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:20, 02:56](930 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:23](691 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:24, 04:37](857 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:18, 05:53](1813 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:41](1803 MB) + +PASS -- COMPILE 'csawmg_intel' [07:12, 05:22] +PASS -- TEST 'control_csawmg_intel' [06:19, 04:09](816 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:11](513 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 05:19] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:24, 07:32](1500 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 05:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:25, 01:54](1713 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:09](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:25] ( 902 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:21, 01:31](1446 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:22, 01:36](1449 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:17, 02:04](651 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:18, 01:53](650 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:20, 02:51](962 MB) +PASS -- TEST 'control_ras_debug_intel' [07:17, 01:55](654 MB) +PASS -- TEST 'control_diag_debug_intel' [07:20, 01:49](1512 MB) +PASS -- TEST 'control_debug_p8_intel' [08:21, 01:49](1744 MB) +PASS -- TEST 'regional_debug_intel' [17:21, 10:56](895 MB) +PASS -- TEST 'rap_control_debug_intel' [09:17, 03:29](1043 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:17, 03:22](1033 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:18, 03:21](1041 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:15, 03:21](1037 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 03:24](1042 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:31](1123 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:29](1044 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:24](1040 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:22](1040 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:21](1035 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:17](1038 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:27](1042 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:23](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 03:22](1037 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:25](1033 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:24, 05:46](1040 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:11, 02:02] ( 859 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:19, 08:40](1527 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:32](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:16](735 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:11](731 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:19, 02:40](797 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:34](786 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:18](736 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:19, 01:14](629 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:12](617 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 06:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:27, 01:51](1023 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:54](1030 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:19, 01:51](1021 MB) +PASS -- TEST 'conus13km_restart_intel' [03:18, 01:04](898 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:25, 02:47](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:04] ( 793 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:17](917 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:11](910 MB) +PASS -- TEST 'conus13km_debug_intel' [15:26, 13:46](1065 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:25, 13:46](761 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:21, 12:43](1070 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:20, 14:01](1064 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 13:59](1126 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:00] ( 793 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:14](952 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:00] ( 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:45](832 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:47, 03:49](1045 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:19](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:50, 04:44](898 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:45, 07:46](936 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:54, 08:14](968 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:42, 03:23](452 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:50, 04:27](467 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:28, 01:43](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:17, 04:40](414 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:31, 02:29](487 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 02:18](485 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:33, 02:49](563 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:56](408 MB) +PASS -- TEST 'gnv1_nested_intel' [05:50, 02:37](1694 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:20] ( 1499 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:30, 08:05](567 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:11, 08:36] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:36, 04:36](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:36, 04:38](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:52] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:54, 03:26](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:40] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:44, 04:20](886 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:45, 04:23](863 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:33, 10:56](882 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:11] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:04](1546 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:22](1553 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:52](673 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 01:53](671 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 01:53](675 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:02](1552 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:03](1552 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 01:50](667 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 04:51](1358 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:43](704 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:04](1547 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:47](4511 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:48](4507 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:05](1551 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:13] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:03](1555 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 00:57](303 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:39](431 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:28](432 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:11, 05:52] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:29, 02:24](1784 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:39] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 03:10](1768 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:29, 02:25](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 01:25](1015 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 02:48] ( 907 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:27, 03:21](1883 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:36] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:19](1738 MB) + +PASS -- COMPILE 'atmaero_intel' [07:11, 05:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:26, 02:41](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 03:08](1568 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:14](1595 MB) + +PASS -- COMPILE 'atmaq_intel' [07:11, 05:30] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:53, 12:45](2967 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:42, 14:34](2969 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:06] ( 884 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:42, 26:00](2980 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:00](786 MB) SYNOPSIS: -Starting Date/Time: 20250918 21:18:14 -Ending Date/Time: 20250918 22:38:50 -Total Time: 01h:21m:03s +Starting Date/Time: 20250926 14:56:48 +Ending Date/Time: 20250926 16:20:19 +Total Time: 01h:23m:56s Compiles Completed: 43/43 Tests Completed: 204/204 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index c14d4b907b..864009cb0b 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: -0f02ee3314bf2365c92f919d2d38e034a7d0eb8e +d4eeb023bef9a3a10e1323812c7089df427d2ff7 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -26,422 +26,422 @@ 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-20250918 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3100914 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3313364 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:12, 11:30] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:06, 12:09](2217 MB) -PASS -- TEST 'cpld_control_gefs_intel' [33:17, 18:22](3029 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [21:10, 05:09](2680 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [26:29, 16:20](3065 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:39] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:52, 21:31](2091 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:58, 21:01](2273 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:54, 08:00](1372 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [21:04, 08:52](2208 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:52, 25:07](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:12, 17:18] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:41, 20:58](2053 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 04:19] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:57, 21:50](1938 MB) - -PASS -- COMPILE 's2swa_intel' [13:12, 11:54] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:16, 14:24](2295 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:19, 13:20](2270 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:12, 06:24](1894 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:11, 14:23](2284 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 06:44](1879 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:11, 12:50](2355 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:11, 13:59](2261 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:10, 13:09](2060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:20, 14:04](2259 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:11, 16:00](2672 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:40, 09:02](2821 MB) - -PASS -- COMPILE 's2swal_intel' [13:12, 11:38] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:19, 14:51](2124 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:16, 06:12](1729 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:06, 10:48](2227 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:31] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:57, 13:21](2106 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:18, 06:16](2178 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 04:06] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:09, 13:18](2263 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 03:58] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:58, 06:40](2124 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:12, 09:40] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:53, 04:19](2150 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:57] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:09, 13:51](2283 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:12, 19:13] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 17:24](2132 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:06, 08:06](1375 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:49, 20:11](1936 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:36, 07:49](3085 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:37, 02:22](3082 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:34, 01:23](2524 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:32, 01:13](2258 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:42](2265 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:33, 00:33](1585 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:30, 01:15](2257 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:43](2263 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:33](1591 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:31, 00:42](2190 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:29, 00:34](2190 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:30, 00:31](1532 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:36] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:43, 27:57](1981 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:27, 09:44] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 03:23](826 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:22](1717 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 02:35](1737 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:28](1724 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:38](1718 MB) -PASS -- TEST 'control_c48_intel' [09:25, 07:12](1720 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:41](851 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:21, 07:27](1725 MB) -PASS -- TEST 'control_c192_intel' [09:35, 07:37](1917 MB) -PASS -- TEST 'control_c384_intel' [15:30, 08:50](1999 MB) -PASS -- TEST 'control_c384gdas_intel' [16:34, 08:29](1402 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:41](784 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:19, 01:00](629 MB) -PASS -- TEST 'control_lndp_intel' [03:19, 01:34](785 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:30](781 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:30, 03:03](1084 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:31](785 MB) -PASS -- TEST 'control_p8_intel' [04:40, 03:00](2023 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:11](2018 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 02:55](2018 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:42, 02:54](2031 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:41, 03:07](2021 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:44, 02:16](2382 MB) -PASS -- TEST 'control_restart_p8_intel' [03:35, 01:44](1261 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:40, 02:57](2011 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 01:44](1288 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:02](2003 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:36, 03:20](2017 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:31, 05:11](2020 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 04:13](2069 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:37, 03:09](2024 MB) -PASS -- TEST 'merra2_thompson_intel' [05:36, 03:30](2020 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:28, 04:54](2030 MB) -PASS -- TEST 'regional_control_intel' [07:28, 05:18](1225 MB) -PASS -- TEST 'regional_restart_intel' [05:35, 02:53](1239 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 05:38](1217 MB) -PASS -- TEST 'regional_2threads_intel' [05:29, 04:01](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:32, 05:21](1510 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:18](1222 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:21](1220 MB) -PASS -- TEST 'regional_wofs_intel' [08:29, 06:49](2036 MB) - -PASS -- COMPILE 'rrfs_intel' [10:13, 08:56] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [09:16, 04:10](1183 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:10](1324 MB) -PASS -- TEST 'rap_decomp_intel' [06:35, 04:21](1168 MB) -PASS -- TEST 'rap_2threads_intel' [06:32, 04:38](1184 MB) -PASS -- TEST 'rap_restart_intel' [04:35, 02:15](1178 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:36, 04:08](1181 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:34, 04:21](1145 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:36, 02:14](1171 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 03:58](1173 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:29, 04:08](1152 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 04:21](1162 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:09](1136 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:33, 07:37](1221 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:35](2116 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:58](2175 MB) - -PASS -- COMPILE 'csawmg_intel' [10:12, 08:35] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:30, 06:11](1155 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:19](866 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 08:23] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [13:50, 11:25](1793 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:12, 08:43] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:46, 02:49](2001 MB) -PASS -- TEST 'regional_control_faster_intel' [07:35, 04:52](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:15] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:25, 04:20](1747 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:32, 04:20](1746 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:22, 04:27](959 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:23, 04:24](955 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:34, 06:56](1262 MB) -PASS -- TEST 'control_ras_debug_intel' [07:23, 04:26](958 MB) -PASS -- TEST 'control_diag_debug_intel' [14:32, 02:46](1814 MB) -PASS -- TEST 'control_debug_p8_intel' [08:37, 05:22](2034 MB) -PASS -- TEST 'regional_debug_intel' [20:35, 18:22](1223 MB) -PASS -- TEST 'rap_control_debug_intel' [07:22, 04:59](1338 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:22, 04:49](1343 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 04:55](1329 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 04:53](1335 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 04:54](1334 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:11](1425 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1333 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:00](1343 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1340 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:55](1328 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:55](1327 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:57](1328 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:59](1333 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 04:54](1345 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 05:04](1335 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:33, 08:49](1352 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:50] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:37, 13:11](1823 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:40] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:57, 03:54](1180 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:28, 03:30](1125 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 03:23](1096 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 04:05](1046 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:28, 03:56](1023 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:37](1030 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 01:54](1067 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:50](1055 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:32] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:54, 02:55](1460 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:47, 01:18](1296 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:46, 02:57](1488 MB) -PASS -- TEST 'conus13km_restart_intel' [13:42, 01:38](1328 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:27] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:34, 04:22](1120 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:40] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:51](1208 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:45](1224 MB) -PASS -- TEST 'conus13km_debug_intel' [24:50, 22:32](1497 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 22:34](1192 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:44, 19:44](1334 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [26:43, 22:59](1527 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:43, 22:17](1567 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:47] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:01](1272 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 11:00] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:10, 05:06](914 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:22, 05:20](1081 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 03:34](1164 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:13, 06:52](940 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:10, 28:56](965 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:47, 05:26](496 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:08, 06:44](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:33, 02:42](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:36, 07:13](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:40, 03:37](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:39, 03:27](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:57](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:25, 01:10](399 MB) -PASS -- TEST 'gnv1_nested_intel' [17:07, 04:01](1869 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:25] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:41, 12:40](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:52] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:47, 15:04](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:57, 14:59](670 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:06] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:20, 10:31](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:09] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:08, 06:32](936 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:11, 06:37](915 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:53, 17:22](1313 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:12] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:18, 03:02](2010 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:03](1960 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [13:16, 02:50](1284 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:17, 02:51](1263 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:17, 02:52](1268 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:17, 03:02](2014 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:16, 03:04](2007 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:16, 02:47](1262 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:05, 07:15](1778 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:05, 06:55](1162 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 03:00](2011 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 04:49](4968 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:17, 04:57](4964 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:39] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:17, 06:44](1912 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:25] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:16, 02:59](2010 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:06] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:56](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:34](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:24, 00:23](306 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:06] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:04, 11:39](2216 MB) +PASS -- TEST 'cpld_control_gefs_intel' [32:50, 16:03](3041 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [18:01, 05:12](2726 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [28:22, 15:54](3052 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:20] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:49, 19:13](2083 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:02, 20:30](2307 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:01, 07:56](1355 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:12, 08:58](2205 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:51, 23:14](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:12, 17:16] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:38, 19:08](2058 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 04:09] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:49, 21:37](1937 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 11:42] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:08, 12:51](2237 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:09, 11:53](2267 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:09, 06:17](1884 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:06, 11:56](2309 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:10, 06:24](1880 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:06, 10:32](2342 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:04, 11:50](2262 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:06, 11:35](2067 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:10, 11:37](2280 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:15, 14:46](2667 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:54, 08:56](2823 MB) + +PASS -- COMPILE 's2swal_intel' [14:12, 12:27] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:07, 12:24](2125 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:10, 06:18](1737 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 07:26](2259 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 10:48] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:43, 11:50](2114 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:55, 06:20](2196 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:04] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:15](2307 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:01] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 06:34](2132 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:12, 09:56] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:19](2168 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:06] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:09, 11:13](2291 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:15] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:50, 17:25](2106 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:02, 07:59](1375 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 20:10](1941 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:41, 07:49](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:44, 02:24](3076 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:38, 01:27](2521 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:34, 01:15](2259 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:34, 00:44](2261 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:31, 00:37](1585 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:35, 01:16](2258 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:33, 00:44](2256 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:31, 00:33](1585 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:29, 00:44](2183 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:33](2191 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:31](1531 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:09] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 27:36](1983 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:48] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:21](831 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:24](1723 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:35](1733 MB) +PASS -- TEST 'control_latlon_intel' [04:21, 02:29](1730 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:32](1727 MB) +PASS -- TEST 'control_c48_intel' [09:24, 07:15](1717 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:40](852 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:22, 07:26](1728 MB) +PASS -- TEST 'control_c192_intel' [09:36, 07:41](1923 MB) +PASS -- TEST 'control_c384_intel' [14:35, 08:40](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [13:28, 08:33](1397 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:40](784 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:59](629 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:36](782 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:29](781 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 03:05](1079 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:30](783 MB) +PASS -- TEST 'control_p8_intel' [04:44, 03:00](2004 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:48, 03:11](1999 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:58](1998 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:42, 02:57](2033 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:40, 03:04](2048 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:42, 02:06](2420 MB) +PASS -- TEST 'control_restart_p8_intel' [03:36, 01:42](1257 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:57](2014 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:38, 01:42](1281 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:36, 03:03](2003 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:18](2034 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:35, 05:10](2027 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 04:13](2076 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:09](2031 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 03:32](2020 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:32, 04:58](2025 MB) +PASS -- TEST 'regional_control_intel' [07:31, 05:19](1223 MB) +PASS -- TEST 'regional_restart_intel' [04:30, 02:52](1236 MB) +PASS -- TEST 'regional_decomp_intel' [07:30, 05:41](1219 MB) +PASS -- TEST 'regional_2threads_intel' [05:30, 04:00](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:31, 05:19](1502 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:14](1210 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:19](1225 MB) +PASS -- TEST 'regional_wofs_intel' [09:30, 07:00](2044 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:51] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [05:36, 04:07](1182 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 04:11](1329 MB) +PASS -- TEST 'rap_decomp_intel' [06:32, 04:19](1172 MB) +PASS -- TEST 'rap_2threads_intel' [06:29, 04:39](1200 MB) +PASS -- TEST 'rap_restart_intel' [04:36, 02:14](1175 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:32, 04:10](1179 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:29, 04:18](1168 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:34, 02:13](1158 MB) +PASS -- TEST 'hrrr_control_intel' [05:37, 03:56](1178 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:05](1152 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:32, 04:23](1165 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:11](1130 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:36, 07:37](1213 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:22, 09:28](2124 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 09:10](2181 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:35] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:35, 06:12](1158 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:22](862 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:32] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 11:24](1797 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:40] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:42, 02:49](2008 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:47](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:23] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:26, 02:09](1739 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:32, 02:16](1751 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:06](955 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:47](951 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:10](1262 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:45](960 MB) +PASS -- TEST 'control_diag_debug_intel' [04:33, 02:46](1812 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 02:41](2037 MB) +PASS -- TEST 'regional_debug_intel' [19:33, 17:37](1219 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:49](1332 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:50](1340 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:53](1335 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:52](1334 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:53](1339 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:21](1429 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:05](1333 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1351 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:05](1335 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:53](1331 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:50](1335 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:52](1336 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:06](1333 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 04:48](1351 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 04:56](1332 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:38](1352 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 02:54] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:18](1818 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:27] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:04](1200 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:30, 03:38](1108 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:28, 03:29](1098 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:31, 03:59](1047 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:50](1018 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:34](1028 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:55](1066 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:51](1049 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:34] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:54](1452 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:16](1290 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:36, 02:55](1495 MB) +PASS -- TEST 'conus13km_restart_intel' [03:40, 01:38](1331 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:37] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:31, 04:14](1121 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:56] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:46](1218 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:53](1224 MB) +PASS -- TEST 'conus13km_debug_intel' [24:39, 22:58](1508 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:42, 22:57](1174 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:39, 19:46](1342 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:39, 22:50](1513 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:41, 22:57](1569 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:57] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:01](1280 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:29] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:03](911 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:16, 05:13](1118 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:31, 03:36](1174 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 06:51](936 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:15, 29:02](959 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:27](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:49](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:44](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:05](431 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 03:38](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:28](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 03:54](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:12](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:19, 04:04](1868 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:20] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:50](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:44] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:48, 15:06](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:58, 15:09](678 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:28] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:26, 10:35](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:57] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:34](936 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:39](923 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:50, 16:16](1307 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:18] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 03:02](2011 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 02:03](1953 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:46](1260 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:50](1264 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:53](1271 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:56](2007 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](2009 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:47](1264 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:37, 07:01](1778 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:18, 06:54](1159 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](2006 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:10](4965 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:59](4968 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:43] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:51](1910 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:33] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](2008 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:20] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 00:54](248 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:35](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:24](307 MB) PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:14] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:26, 00:33](639 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [07:28, 00:16](517 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:19] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:47, 03:40](2071 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:53] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:42, 04:46](2105 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:39] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [13:42, 03:20](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:31, 01:51](1102 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:50] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:42, 04:54](1884 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:14] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:40, 02:00](2028 MB) - -PASS -- COMPILE 'atmaero_intel' [11:10, 08:55] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [15:47, 04:11](2099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [15:35, 04:58](1896 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:36, 04:58](1897 MB) - -PASS -- COMPILE 'atmaq_intel' [10:10, 08:38] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [27:36, 15:09](2927 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [30:28, 19:02](2928 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:00] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [52:19, 39:51](2941 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:21] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [26:24, 11:15](1188 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 03:55] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [15:28, 04:08](1114 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:11, 04:00] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [15:31, 04:39](1126 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:14] -PASS -- TEST 'control_c48_gnu' [20:25, 09:29](1538 MB) -PASS -- TEST 'control_stochy_gnu' [13:17, 02:51](603 MB) -PASS -- TEST 'control_ras_gnu' [14:17, 04:45](611 MB) -PASS -- TEST 'control_p8_gnu' [13:44, 04:20](1562 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [12:39, 04:16](1551 MB) -PASS -- TEST 'control_flake_gnu' [13:21, 05:28](650 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:50] -PASS -- TEST 'rap_control_gnu' [13:32, 05:51](947 MB) -PASS -- TEST 'rap_decomp_gnu' [13:33, 05:58](946 MB) -PASS -- TEST 'rap_2threads_gnu' [12:30, 06:54](1022 MB) -PASS -- TEST 'rap_restart_gnu' [05:36, 03:06](678 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:32, 05:52](944 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 06:03](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:35, 03:02](684 MB) -PASS -- TEST 'hrrr_control_gnu' [10:29, 05:43](950 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [09:27, 05:39](936 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:31, 06:37](1012 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:43](949 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:23, 02:58](683 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:22, 02:56](774 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:55](940 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:31] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:32](635 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:19](505 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:23] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:50, 03:42](2080 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:57] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:41](2113 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:37] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:14](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 01:58](1101 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 03:59] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:44, 04:58](1883 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:00] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:43, 01:56](2022 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 08:51] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:46, 04:11](2116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:37, 04:54](1894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 05:00](1892 MB) + +PASS -- COMPILE 'atmaq_intel' [10:11, 08:33] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [18:38, 15:02](2927 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [21:30, 18:45](2928 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:00] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:19, 40:02](2941 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:30] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:26](1186 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:12, 04:01] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:28, 04:09](1120 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:12, 03:52] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:31, 04:44](1128 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 03:58] +PASS -- TEST 'control_c48_gnu' [11:23, 09:27](1539 MB) +PASS -- TEST 'control_stochy_gnu' [04:17, 02:51](605 MB) +PASS -- TEST 'control_ras_gnu' [06:19, 04:40](611 MB) +PASS -- TEST 'control_p8_gnu' [06:47, 04:22](1550 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:42, 04:22](1562 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:24](649 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:51] +PASS -- TEST 'rap_control_gnu' [08:32, 05:58](947 MB) +PASS -- TEST 'rap_decomp_gnu' [08:27, 06:06](944 MB) +PASS -- TEST 'rap_2threads_gnu' [09:33, 06:59](1019 MB) +PASS -- TEST 'rap_restart_gnu' [04:31, 03:02](681 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 06:07](948 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:28, 06:00](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:33, 03:02](683 MB) +PASS -- TEST 'hrrr_control_gnu' [07:32, 05:44](953 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:39](939 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:35, 06:34](1010 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:27, 05:43](952 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:56](682 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:57](771 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:51](942 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:39] PASS -- TEST 'control_csawmg_gnu' [10:29, 08:23](851 MB) -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:46] -PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:32](1379 MB) -PASS -- TEST 'regional_debug_gnu' [10:30, 08:27](872 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:34](960 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](964 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](967 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:29](971 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:44](1045 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:01](951 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:19, 02:34](958 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:28](602 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:19, 01:36](595 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:34, 01:39](1554 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:30](957 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:31](961 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:44, 04:19](973 MB) +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:35] +PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:39](1377 MB) +PASS -- TEST 'regional_debug_gnu' [10:32, 08:24](880 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:31](958 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:28](965 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](968 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:34](965 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:47](1042 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:02](954 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:35](956 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](601 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:37](592 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:40](1554 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:37](961 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:37](964 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:16](971 MB) PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:00] -PASS -- TEST 'control_wam_debug_gnu' [09:47, 06:27](1397 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:37] -PASS -- TEST 'control_csawmg_debug_gnu' [09:35, 02:19](837 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:44] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:30, 05:06](798 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:29, 04:58](807 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:27, 06:03](852 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [12:26, 05:54](849 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:08](805 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [05:39, 02:39](656 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:38](659 MB) -PASS -- TEST 'conus13km_control_gnu' [06:49, 04:51](1031 MB) -PASS -- TEST 'conus13km_2threads_gnu' [09:37, 02:02](1017 MB) -PASS -- TEST 'conus13km_decomp_gnu' [07:37, 04:55](1032 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:53, 02:37](722 MB) +PASS -- TEST 'control_wam_debug_gnu' [08:42, 06:21](1404 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:24] +PASS -- TEST 'control_csawmg_debug_gnu' [04:32, 02:17](834 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:40] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:05](800 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:57](807 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:29, 06:04](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:28, 05:56](846 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:25, 05:11](805 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:44](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:36](660 MB) +PASS -- TEST 'conus13km_control_gnu' [06:51, 04:49](1030 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:44, 02:01](1018 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:42, 04:49](1032 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:42](733 MB) PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [12:34, 05:38](828 MB) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 05:38](826 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:42] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [08:20, 02:29](807 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:20, 02:24](816 MB) -PASS -- TEST 'conus13km_debug_gnu' [18:45, 11:07](1044 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [18:44, 11:31](771 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [16:40, 09:13](1033 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [18:38, 11:33](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [18:37, 11:12](1114 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:34] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:29](808 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:29](812 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:40, 10:58](1033 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [13:39, 11:08](772 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:38, 09:04](1033 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:39, 11:34](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:38, 10:57](1114 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:40] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [09:21, 04:54](834 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:34](832 MB) -PASS -- COMPILE 's2swa_gnu' [18:15, 16:35] -PASS -- TEST 'cpld_control_p8_gnu' [18:14, 13:25](1690 MB) +PASS -- COMPILE 's2swa_gnu' [18:11, 16:47] +PASS -- TEST 'cpld_control_p8_gnu' [13:11, 10:53](1690 MB) -PASS -- COMPILE 's2s_gnu' [18:15, 15:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:59, 09:52](1630 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 15:52] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:00, 09:52](1651 MB) -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 02:44] -PASS -- TEST 'cpld_debug_p8_gnu' [13:03, 06:59](1687 MB) +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 02:56] +PASS -- TEST 'cpld_debug_p8_gnu' [09:02, 07:04](1688 MB) -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:52, 17:51](1613 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:10] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:50, 17:50](1597 MB) PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:31] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:49, 10:58](1555 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:47, 11:03](1556 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [17:15, 15:18] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:18, 03:33](1556 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:26] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:18](1554 MB) -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:08] -PASS -- TEST 'control_gfs_mpas_gnu' [02:40, 00:40](6358 MB) +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:10] +PASS -- TEST 'control_gfs_mpas_gnu' [02:27, 00:47](6338 MB) -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:11, 08:45] ( 402 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:44, 01:26](1171 MB) +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:12, 08:38] ( 402 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:30, 01:29](1172 MB) SYNOPSIS: -Starting Date/Time: 20250922 17:27:09 -Ending Date/Time: 20250922 19:43:10 -Total Time: 02h:16m:37s +Starting Date/Time: 20250926 19:26:19 +Ending Date/Time: 20250926 21:26:14 +Total Time: 02h:00m:28s Compiles Completed: 64/64 Tests Completed: 277/277 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 05a9b23a1a..20c49f86ed 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: -0f02ee3314bf2365c92f919d2d38e034a7d0eb8e +746ad7c0a449edef907e3d6656fd750bfa6bd81e Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,407 +40,407 @@ 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-20250918 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3887136 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3812241 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:10, 20:30] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:24, 09:18](2166 MB) -PASS -- TEST 'cpld_control_gefs_intel' [33:32, 16:06](3117 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [20:06, 05:34](2828 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [33:32, 18:21](3151 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:11, 32:49] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:16, 25:39](2027 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:35, 19:21](2338 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:27, 07:48](1349 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:39, 08:39](2215 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:19, 18:30](1932 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:10, 19:59] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:49, 16:40](1989 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:53] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:25, 17:22](1997 MB) - -PASS -- COMPILE 's2swa_intel' [21:10, 19:53] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:13, 09:25](2261 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:20, 09:50](2258 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:25, 06:44](1961 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:05, 09:24](2283 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:25, 04:58](1841 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:04, 09:09](2393 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:04, 09:24](2246 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:08, 08:24](2137 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:19, 08:41](2261 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:09, 16:10](2938 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:38, 05:41](2969 MB) - -PASS -- COMPILE 's2swal_intel' [22:10, 20:33] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [13:21, 10:13](2224 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:28, 04:29](1928 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 07:32](2232 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 11:36] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:01, 07:44](2046 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:01, 05:55](2168 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:35] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:11, 10:35](2287 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:52] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:11](2080 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 09:24] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:18](2129 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:10, 12:23] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 08:07](2262 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 17:54] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:31, 16:01](2093 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 07:04](1424 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:56, 16:47](1999 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:48, 07:35](3059 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:44, 03:19](3039 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:51, 01:39](2479 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:33, 02:01](2245 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:30, 02:02](2243 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:27, 00:26](1553 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [06:28, 02:36](2241 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [06:29, 02:02](2244 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:32, 00:35](1543 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:59](2172 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:25, 00:29](2170 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:29, 01:02](1508 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:15] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:07, 22:19](2059 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:31] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [04:40, 03:05](723 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:14](1613 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:32](1632 MB) -PASS -- TEST 'control_latlon_intel' [04:25, 02:11](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 02:33](1614 MB) -PASS -- TEST 'control_c48_intel' [08:49, 06:38](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:46, 06:17](829 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:49, 07:05](1721 MB) -PASS -- TEST 'control_c192_intel' [08:59, 07:07](1815 MB) -PASS -- TEST 'control_c384_intel' [13:30, 11:00](2021 MB) -PASS -- TEST 'control_c384gdas_intel' [16:32, 12:56](1516 MB) -PASS -- TEST 'control_stochy_intel' [03:37, 01:30](679 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:53](545 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:24](678 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:10](677 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:26, 02:38](977 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:10](675 MB) -PASS -- TEST 'control_p8_intel' [04:57, 02:37](1912 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:40](1916 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:34](1905 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:53, 02:56](1930 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:55, 03:22](1940 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:43, 01:55](2436 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 01:57](1175 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:54](1900 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:32](1211 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:42, 03:11](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:41, 03:59](1991 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:45, 04:50](1910 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:42](1984 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:09](1914 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:01](1913 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:47, 04:53](1927 MB) -PASS -- TEST 'regional_control_intel' [06:35, 04:54](1195 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:32](1209 MB) -PASS -- TEST 'regional_decomp_intel' [07:25, 05:19](1184 MB) -PASS -- TEST 'regional_2threads_intel' [05:28, 03:34](1085 MB) -PASS -- TEST 'regional_noquilt_intel' [09:38, 07:32](1498 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:32, 07:57](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:27](1196 MB) -PASS -- TEST 'regional_wofs_intel' [07:25, 05:56](2100 MB) - -PASS -- COMPILE 'rrfs_intel' [13:10, 11:25] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [05:50, 03:34](1084 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:46, 03:32](1437 MB) -PASS -- TEST 'rap_decomp_intel' [05:33, 03:42](1073 MB) -PASS -- TEST 'rap_2threads_intel' [06:45, 04:17](1177 MB) -PASS -- TEST 'rap_restart_intel' [03:52, 02:00](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:45, 03:38](1122 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:43, 03:46](1067 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:56, 02:00](1095 MB) -PASS -- TEST 'hrrr_control_intel' [05:53, 03:28](1074 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 03:37](1064 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 04:03](1145 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 01:54](1057 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:26](1189 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:20, 08:14](2018 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:58](2162 MB) - -PASS -- COMPILE 'csawmg_intel' [12:10, 10:50] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:27, 05:38](1074 MB) -PASS -- TEST 'control_ras_intel' [04:19, 02:52](850 MB) - -PASS -- COMPILE 'wam_intel' [09:10, 08:04] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [11:43, 09:53](1690 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:10, 07:53] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:50, 02:40](1911 MB) -PASS -- TEST 'regional_control_faster_intel' [05:33, 04:05](1197 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:47] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 01:51](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:26, 01:59](1649 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:32](864 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:23](857 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:30, 06:07](1164 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:19](867 MB) -PASS -- TEST 'control_diag_debug_intel' [05:27, 03:16](1713 MB) -PASS -- TEST 'control_debug_p8_intel' [05:39, 03:23](1938 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 15:17](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [05:18, 04:07](1237 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 03:59](1232 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:02](1246 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:20, 04:01](1245 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:11](1251 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:24, 04:15](1324 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:18](1243 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:07](1234 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:19, 04:07](1253 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:19, 04:08](1241 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:03](1237 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:11](1249 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 06:39](1241 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:28, 05:56](1248 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:09](1238 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:34] ( 859 warnings 394 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 07:55] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:47, 03:21](1296 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:48, 03:06](1056 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:55, 02:55](1012 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 03:39](1072 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:34](1045 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:55, 04:31](990 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:51, 01:41](991 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:41](981 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:54] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:41, 02:27](1511 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:34, 01:11](1328 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:31, 02:28](1533 MB) -PASS -- TEST 'conus13km_restart_intel' [11:35, 01:26](1282 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 07:53] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 03:48](1104 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:29] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:02](1120 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:14](1112 MB) -PASS -- TEST 'conus13km_debug_intel' [20:35, 18:30](1559 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:31, 18:41](1164 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:28, 20:28](1375 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [21:28, 19:24](1589 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:30, 19:07](1627 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:24] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 04:26](1215 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 11:03] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 04:48](1032 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:12, 05:01](1240 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:29, 03:00](1287 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:19, 06:20](1108 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:14, 14:25](1129 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:25, 16:41](1157 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 06:41](600 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 06:14](612 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:43, 02:20](432 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 06:31](504 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:53, 03:19](611 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:54, 03:06](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 04:08](659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:27, 00:57](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 03:18] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:05, 10:42](637 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:01] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:59, 17:23](736 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:13, 22:23](829 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:50] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:54, 11:45](827 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:01] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:09, 05:57](1093 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:07, 06:00](1077 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:50, 16:25](1338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:08] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:16, 02:27](1873 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:35](1818 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:15, 02:18](1121 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:15, 02:16](1119 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:15, 02:19](1134 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:15, 02:25](1872 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:26](1855 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 02:15](1118 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:57, 05:52](1721 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:56, 05:37](1201 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:15, 02:24](1864 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:16, 03:53](4833 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:18, 03:54](4832 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:51] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:30](1774 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:05] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:23](1861 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:55](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:38](554 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:28](558 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:10, 14:09] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:53, 03:16](2036 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:25] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:47, 04:15](2062 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:36] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 03:54](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:05](1167 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:01] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 04:12](1918 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:31] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 01:44](1944 MB) - -PASS -- COMPILE 'atmaero_intel' [09:11, 08:05] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:57, 03:43](2013 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:41, 04:28](1791 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 04:19](1807 MB) - -PASS -- COMPILE 'atmaq_intel' [09:11, 08:00] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [16:29, 13:36](2943 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [20:25, 16:33](2945 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:34] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:23, 32:08](2958 MB) - -PASS -- COMPILE 'atm_fbh_intel' [09:11, 07:44] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:24, 09:51](1085 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 03:34] -PASS -- TEST 'control_c48_gnu' [13:31, 07:50](1583 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 02:17](594 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 03:43](596 MB) -PASS -- TEST 'control_p8_gnu' [08:57, 04:38](1548 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:39, 04:40](1545 MB) -PASS -- TEST 'control_flake_gnu' [08:22, 04:28](638 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 05:49] -PASS -- TEST 'rap_control_gnu' [07:48, 04:12](944 MB) -PASS -- TEST 'rap_decomp_gnu' [08:36, 04:20](941 MB) -PASS -- TEST 'rap_2threads_gnu' [06:45, 03:35](1006 MB) -PASS -- TEST 'rap_restart_gnu' [03:54, 02:08](673 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [06:43, 04:12](942 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:34, 04:11](939 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:55, 02:13](678 MB) -PASS -- TEST 'hrrr_control_gnu' [06:35, 04:04](937 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 04:01](927 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:44, 03:40](1002 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:02](939 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:08](673 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:27, 02:07](755 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:55, 07:32](938 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:21] -PASS -- TEST 'control_csawmg_gnu' [08:25, 06:35](839 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:05] -PASS -- TEST 'control_diag_debug_gnu' [03:33, 01:20](1370 MB) -PASS -- TEST 'regional_debug_gnu' [09:30, 07:36](885 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:20, 02:00](949 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 01:53](950 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:59](952 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 01:58](951 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:13](1042 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:31, 03:01](944 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 01:58](949 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:10](581 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:21](578 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:17](1537 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 01:56](952 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 01:56](952 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:15](954 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:43] -PASS -- TEST 'control_wam_debug_gnu' [06:36, 05:01](1390 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:12, 06:37] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:00](837 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 03:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:46, 03:58](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:02, 03:48](792 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:38, 03:45](838 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:41, 03:39](834 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 04:00](792 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:47, 02:10](642 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 02:02](645 MB) -PASS -- TEST 'conus13km_control_gnu' [05:39, 03:49](1036 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:33, 01:52](1017 MB) -PASS -- TEST 'conus13km_decomp_gnu' [05:29, 03:56](1037 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:32, 02:07](763 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:03] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:34, 06:15](821 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 09:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:00](801 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:47, 02:04](800 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:02, 08:31](1052 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:00, 08:45](777 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:54, 08:46](1033 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:49, 08:55](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [14:48, 12:14](1122 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:11, 09:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:36, 02:05](828 MB) - -PASS -- COMPILE 's2swa_gnu' [31:11, 29:59] -PASS -- TEST 'cpld_control_p8_gnu' [12:26, 09:45](1726 MB) - -PASS -- COMPILE 's2s_gnu' [30:11, 29:07] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:13, 08:12](1632 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:18] -PASS -- TEST 'cpld_debug_p8_gnu' [07:54, 05:19](1731 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 18:30] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [15:52, 13:54](1590 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 02:09] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [10:56, 08:49](1601 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:22] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:50](1608 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 02:54] -PASS -- TEST 'control_gfs_mpas_gnu' [02:20, 00:35](6405 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:58] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:59, 08:46](2165 MB) +PASS -- TEST 'cpld_control_gefs_intel' [40:05, 18:21](3140 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:31, 04:30](2825 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [31:53, 16:00](3161 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:14] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [42:08, 18:11](2032 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:26, 18:09](2342 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 07:00](1335 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [21:46, 08:56](2204 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:50, 19:37](1929 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:08] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [42:36, 18:24](1985 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:02] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:07, 17:33](1995 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:27] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:13, 09:44](2270 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:09, 12:23](2265 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:05, 04:31](1954 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:00, 09:39](2290 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:09, 06:01](1842 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:56, 10:04](2392 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:03, 09:23](2252 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:55, 10:26](2143 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:08, 09:20](2266 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [39:56, 16:31](2949 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:42, 08:18](2958 MB) + +PASS -- COMPILE 's2swal_intel' [13:11, 11:36] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [21:01, 09:54](2224 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [21:23, 06:24](1930 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [24:54, 07:50](2237 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 10:37] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:51, 08:44](2047 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:55, 07:02](2158 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:22] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:07, 11:33](2289 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:21] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:50, 05:59](2073 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:24] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:49, 04:58](2128 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:07] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [36:09, 09:08](2261 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 16:18] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:51, 15:43](2099 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:05, 06:57](1411 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:40, 16:34](1992 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [12:42, 06:46](3052 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [10:41, 03:41](3040 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [10:43, 02:07](2488 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [08:28, 02:31](2246 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [07:26, 01:12](2247 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [09:30, 01:31](1557 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [08:27, 01:41](2235 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [07:26, 01:27](2240 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [11:37, 01:40](1553 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [07:25, 01:37](2171 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [07:25, 01:32](2167 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [11:35, 01:50](1506 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 03:04] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:13, 23:00](2072 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 09:05] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [24:21, 04:03](727 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:22, 03:01](1615 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:28, 02:15](1623 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 02:14](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:28, 02:13](1623 MB) +PASS -- TEST 'control_c48_intel' [10:24, 06:40](1716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:01](839 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:26, 06:48](1712 MB) +PASS -- TEST 'control_c192_intel' [17:34, 09:00](1815 MB) +PASS -- TEST 'control_c384_intel' [12:11, 07:37](2042 MB) +PASS -- TEST 'control_c384gdas_intel' [19:15, 08:10](1518 MB) +PASS -- TEST 'control_stochy_intel' [11:20, 01:28](681 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:53](559 MB) +PASS -- TEST 'control_lndp_intel' [10:20, 01:22](677 MB) +PASS -- TEST 'control_iovr4_intel' [11:22, 02:19](676 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [12:31, 03:20](971 MB) +PASS -- TEST 'control_iovr5_intel' [11:25, 02:12](671 MB) +PASS -- TEST 'control_p8_intel' [12:57, 03:11](1908 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 04:06](1911 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:51, 03:34](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [13:49, 03:49](1926 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [14:54, 04:51](1941 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:42, 02:08](2434 MB) +PASS -- TEST 'control_restart_p8_intel' [05:40, 02:07](1168 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:40, 03:10](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:48, 01:29](1217 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:36, 02:47](1896 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:35, 02:59](1990 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:29, 04:31](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 03:43](1977 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:47](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [06:50, 04:09](1920 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:42, 04:33](1920 MB) +PASS -- TEST 'regional_control_intel' [07:27, 04:38](1190 MB) +PASS -- TEST 'regional_restart_intel' [05:25, 02:27](1206 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 04:45](1190 MB) +PASS -- TEST 'regional_2threads_intel' [06:24, 03:37](1086 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 04:34](1497 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:31](1200 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:41](1200 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 05:55](2100 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 08:24] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [26:45, 05:19](1098 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 04:35](1419 MB) +PASS -- TEST 'rap_decomp_intel' [06:35, 03:46](1065 MB) +PASS -- TEST 'rap_2threads_intel' [08:41, 04:22](1155 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 02:01](1072 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:45, 03:39](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:31, 03:51](1051 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 01:59](1085 MB) +PASS -- TEST 'hrrr_control_intel' [06:46, 03:31](1081 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:34, 03:35](1059 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 04:01](1149 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:19, 01:54](1055 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:53, 06:43](1193 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 08:16](2020 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:19, 07:51](2177 MB) + +PASS -- COMPILE 'csawmg_intel' [12:10, 07:44] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:26, 05:29](1069 MB) +PASS -- TEST 'control_ras_intel' [06:18, 04:05](828 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 07:46] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [14:38, 12:22](1688 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 07:48] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:20](1912 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:07](1196 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:40] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:24, 02:05](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [27:28, 02:52](1638 MB) +PASS -- TEST 'control_stochy_debug_intel' [27:20, 02:42](853 MB) +PASS -- TEST 'control_lndp_debug_intel' [27:22, 03:31](855 MB) +PASS -- TEST 'control_csawmg_debug_intel' [29:29, 04:12](1164 MB) +PASS -- TEST 'control_ras_debug_intel' [26:20, 02:27](865 MB) +PASS -- TEST 'control_diag_debug_intel' [26:26, 02:26](1704 MB) +PASS -- TEST 'control_debug_p8_intel' [29:36, 03:26](1944 MB) +PASS -- TEST 'regional_debug_intel' [41:29, 15:57](1159 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 04:08](1245 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:57](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:12](1248 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:12](1234 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:11](1237 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:23, 04:14](1324 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:09](1239 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:11](1237 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:08](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:12](1241 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:17, 06:02](1234 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:18, 04:16](1227 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:17, 06:42](1235 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:18, 04:03](1230 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:17, 04:05](1233 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 02:18] ( 859 warnings 394 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 07:23] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 03:12](1309 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 03:02](1044 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 02:56](1032 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 03:45](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:37, 03:34](1067 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:07](985 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:44, 01:41](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:18, 01:37](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 07:49] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:35, 02:26](1519 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:28, 01:07](1325 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:26, 02:24](1523 MB) +PASS -- TEST 'conus13km_restart_intel' [15:34, 02:18](1287 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 07:42] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:49](1113 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:33] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:16, 04:02](1107 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:16, 03:58](1117 MB) +PASS -- TEST 'conus13km_debug_intel' [25:36, 18:35](1560 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:32, 18:23](1165 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:36, 20:30](1383 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [26:26, 19:08](1588 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:27, 18:40](1625 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:23] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:07](1214 MB) + +PASS -- COMPILE 'hafsw_intel' [12:10, 10:36] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:46](1035 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:08, 04:51](1213 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 03:47](1300 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:11, 06:29](1111 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 14:44](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:13, 16:34](1142 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:49, 06:41](600 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:09, 06:10](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [13:39, 02:19](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:44, 06:29](504 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:42, 03:17](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:41, 03:06](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:48, 04:17](664 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:25, 00:59](447 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:05] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:44, 10:48](631 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:10, 17:20] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:51, 17:47](730 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:56, 18:28](832 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 10:41] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:38, 11:47](831 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:10, 10:32] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:08, 05:40](1105 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:04, 07:26](1088 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:44, 16:41](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 05:27] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:15, 02:25](1869 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:33](1813 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:14, 02:16](1115 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:15, 02:17](1113 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:14, 02:13](1124 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:14, 02:25](1865 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:14, 02:24](1868 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:14, 02:12](1113 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:56, 05:55](1710 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 05:40](1194 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:13, 02:35](1872 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:15, 04:38](4836 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:15, 03:50](4829 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 02:42] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:30](1772 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 07:38] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:23](1871 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:44] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:53](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:35](556 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:25](554 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:10, 08:22] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:51, 03:20](2044 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:00] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:16](2058 MB) + +PASS -- COMPILE 'atml_intel' [10:10, 08:36] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:55, 03:28](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 01:50](1169 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:25] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:08](1916 MB) + +PASS -- COMPILE 'atmw_intel' [14:10, 09:54] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:54, 01:42](1941 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 08:00] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:45, 03:42](2016 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:39, 04:09](1792 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 04:19](1824 MB) + +PASS -- COMPILE 'atmaq_intel' [10:10, 08:09] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [16:19, 13:23](2951 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [19:11, 15:58](2942 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:51] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [48:17, 44:40](2957 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:10, 07:49] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:23, 09:29](1088 MB) + +PASS -- COMPILE 'atm_gnu' [08:10, 03:50] +PASS -- TEST 'control_c48_gnu' [10:29, 07:50](1583 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:13](594 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 03:39](595 MB) +PASS -- TEST 'control_p8_gnu' [05:48, 03:22](1546 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:20](1533 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:23](636 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 03:51] +PASS -- TEST 'rap_control_gnu' [06:32, 04:10](939 MB) +PASS -- TEST 'rap_decomp_gnu' [05:46, 04:08](944 MB) +PASS -- TEST 'rap_2threads_gnu' [08:46, 05:06](1004 MB) +PASS -- TEST 'rap_restart_gnu' [04:49, 02:12](670 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:42, 04:10](939 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:33, 04:13](940 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:55, 02:11](678 MB) +PASS -- TEST 'hrrr_control_gnu' [07:36, 04:03](937 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:34, 04:03](924 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:43, 03:28](1001 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:29, 04:04](937 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:09](670 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:02](759 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 07:39](937 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 03:31] +PASS -- TEST 'control_csawmg_gnu' [10:23, 07:44](837 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 05:38] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:12](1372 MB) +PASS -- TEST 'regional_debug_gnu' [15:26, 11:35](886 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:17, 01:59](951 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:17, 01:53](945 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:19, 01:57](950 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 01:58](952 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:25, 02:08](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 03:08](945 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:17, 02:05](950 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:13](581 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:19](582 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:16](1535 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:04](950 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:50](952 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:24](957 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:41] +PASS -- TEST 'control_wam_debug_gnu' [07:36, 05:21](1387 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 02:55] +PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 01:44](826 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 03:36] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:34, 03:56](792 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:53, 03:53](789 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:44, 03:37](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 03:25](837 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:33, 03:54](791 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:44, 02:06](642 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:02](645 MB) +PASS -- TEST 'conus13km_control_gnu' [07:30, 03:49](1034 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:25, 01:49](1016 MB) +PASS -- TEST 'conus13km_decomp_gnu' [08:30, 05:38](1043 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:30, 02:03](762 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:06] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:31, 04:27](820 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 05:34] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 02:08](800 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:08](800 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:36, 08:29](1054 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:28, 08:38](778 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:31, 08:46](1037 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [11:28, 08:54](1056 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 08:54](1120 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:26] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:19, 01:55](827 MB) + +PASS -- COMPILE 's2swa_gnu' [17:10, 15:36] +PASS -- TEST 'cpld_control_p8_gnu' [14:11, 10:02](1730 MB) + +PASS -- COMPILE 's2s_gnu' [18:10, 15:35] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:50, 08:04](1629 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:36] +PASS -- TEST 'cpld_debug_p8_gnu' [08:49, 05:28](1716 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:28] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [17:47, 14:01](1589 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:02] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:47, 08:56](1601 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:02] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:15, 03:31](1606 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [09:11, 02:51] +PASS -- TEST 'control_gfs_mpas_gnu' [05:19, 00:49](6413 MB) SYNOPSIS: -Starting Date/Time: 20250922 12:09:28 -Ending Date/Time: 20250922 14:03:43 -Total Time: 01h:55m:29s +Starting Date/Time: 20250928 04:39:27 +Ending Date/Time: 20250928 08:01:47 +Total Time: 03h:23m:24s Compiles Completed: 60/60 Tests Completed: 270/270 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index d59fc09108..15af4223c1 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: -68e7a5bad062e889f85399e47ecba7b1ab84adf3 +00c18728d4f13faf1aba08369b6e0bca1a6e4fba Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,317 +40,317 @@ 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-20250918 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_592202 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /work/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2170265 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 16:08] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:21, 16:23](2109 MB) -PASS -- TEST 'cpld_control_gefs_intel' [04:51, 20:34](3067 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [29:39, 08:20](2734 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [03:15, 22:21](3081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 21:18] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [52:25, 20:57](1972 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:11, 22:48](2143 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:03, 09:22](1235 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [21:12, 10:36](2089 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:26, 24:53](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [31:13, 26:30] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [45:03, 20:57](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 06:28] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [38:08, 22:22](1960 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 15:41] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:58, 17:37](2183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [39:27, 17:07](2194 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:07, 08:32](1778 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:02, 16:27](2203 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:43, 08:30](1772 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [42:11, 13:13](2297 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [45:39, 16:48](2181 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:17, 15:01](2071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:33, 17:20](2197 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [53:50, 16:21](2679 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:37, 09:32](2864 MB) - -PASS -- COMPILE 's2swal_intel' [20:11, 15:36] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [31:33, 18:11](2153 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:58, 09:20](1771 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:11, 08:42](2164 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 15:43] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:06, 16:41](2000 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [36:18, 07:35](2096 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 06:26] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:49, 14:57](2215 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 05:52] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:33](2034 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 13:12] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:37, 05:56](2072 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:03] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [46:53, 17:09](2192 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:26] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:40, 18:39](2032 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:25, 09:03](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:42, 21:13](1932 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [31:13, 09:14](3052 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [26:16, 03:34](3042 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:09, 01:29](2484 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [23:46, 02:54](2241 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [23:50, 01:53](2242 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:42, 00:37](1557 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [24:45, 02:36](2242 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [20:48, 01:42](2242 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:39, 00:52](1553 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [17:42, 01:42](2166 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [14:43, 01:56](2166 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:38, 00:33](1507 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 05:57] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:54, 29:14](2010 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 13:44] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [10:33, 03:49](703 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:39, 02:43](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:42, 02:56](1595 MB) -PASS -- TEST 'control_latlon_intel' [05:32, 02:50](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:38, 02:48](1596 MB) -PASS -- TEST 'control_c48_intel' [11:35, 09:11](1712 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:24](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:30, 09:22](1712 MB) -PASS -- TEST 'control_c192_intel' [10:49, 08:16](1787 MB) -PASS -- TEST 'control_c384_intel' [12:54, 09:57](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [15:37, 10:26](1337 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:50](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:06](486 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:42](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:30, 02:43](658 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:42, 03:59](950 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:45](660 MB) -PASS -- TEST 'control_p8_intel' [06:16, 03:14](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:23, 03:23](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:26, 03:10](1891 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:29, 03:13](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:33, 03:14](1919 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:11, 02:08](2408 MB) -PASS -- TEST 'control_restart_p8_intel' [04:09, 01:48](1102 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:35, 03:07](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:31, 01:49](1117 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:12](1877 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:50](1970 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:47, 05:30](1887 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:49](1946 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:21](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [06:37, 03:51](1901 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:25, 05:26](1903 MB) -PASS -- TEST 'regional_control_intel' [08:37, 06:21](1090 MB) -PASS -- TEST 'regional_restart_intel' [08:46, 04:37](1101 MB) -PASS -- TEST 'regional_decomp_intel' [08:36, 06:41](1075 MB) -PASS -- TEST 'regional_2threads_intel' [06:38, 04:25](1026 MB) -PASS -- TEST 'regional_noquilt_intel' [08:48, 06:19](1367 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:19](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 06:21](1086 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 07:52](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 12:19] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [07:30, 04:30](1039 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 05:06](1354 MB) -PASS -- TEST 'rap_decomp_intel' [07:19, 04:38](1038 MB) -PASS -- TEST 'rap_2threads_intel' [08:27, 05:18](1118 MB) -PASS -- TEST 'rap_restart_intel' [08:48, 02:30](1003 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:23, 04:28](1048 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:20, 04:38](1035 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:44, 02:27](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:28, 04:21](1048 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 04:24](1035 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:30, 04:58](1107 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:44, 02:23](964 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:30, 08:18](1040 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:44](1996 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:35, 09:22](2015 MB) - -PASS -- COMPILE 'csawmg_intel' [21:11, 11:46] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:46, 06:29](1041 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:39](747 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 11:48] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [15:58, 13:02](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 12:00] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:36, 03:07](1890 MB) -PASS -- TEST 'regional_control_faster_intel' [11:47, 07:02](1085 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:11, 06:50] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:33, 02:17](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:39, 02:20](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:26, 02:58](836 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:26, 02:39](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:47, 05:10](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [07:28, 02:45](839 MB) -PASS -- TEST 'control_diag_debug_intel' [06:41, 02:49](1697 MB) -PASS -- TEST 'control_debug_p8_intel' [07:55, 03:51](1922 MB) -PASS -- TEST 'regional_debug_intel' [22:44, 17:57](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [08:25, 04:59](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:32, 04:48](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 04:56](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:25, 04:54](1227 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 04:57](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:08](1309 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:56](1218 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:58](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:01](1232 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:52](1223 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:51](1223 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 04:57](1219 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 07:58](1236 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:29, 05:04](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:26, 04:55](1218 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:10, 04:14] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:59, 13:54](1705 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 11:37] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 04:52](1238 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:17, 03:56](938 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:37, 03:47](919 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 04:36](974 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 04:24](976 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:11, 03:55](907 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:35, 02:10](895 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:48, 02:09](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:11, 12:46] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:05, 03:42](1323 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:25](1242 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:46](1351 MB) -PASS -- TEST 'conus13km_restart_intel' [12:55, 02:05](1182 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:12, 11:50] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:34](1013 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:12, 04:45] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:42](1088 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:32, 04:47](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [27:40, 21:46](1387 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:36, 22:07](1064 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:27, 21:35](1272 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [34:33, 23:53](1428 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:15, 21:51](1433 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:13, 04:45] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:42, 04:47](1177 MB) - -PASS -- COMPILE 'hafsw_intel' [33:13, 14:46] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:32, 05:55](904 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [17:45, 07:22](1080 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:39, 04:37](1222 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:39, 07:10](973 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:35, 28:04](992 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:36, 34:22](1025 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:18, 06:49](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:42, 08:21](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 04:46](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:49, 08:53](422 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:58, 04:32](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:12, 04:21](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:05, 05:25](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:36, 01:46](398 MB) -PASS -- TEST 'gnv1_nested_intel' [18:17, 04:24](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [23:12, 05:37] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:00, 12:47](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [30:18, 14:25] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:24, 15:22](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:24, 15:29](714 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [31:12, 14:54] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:14, 11:09](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [28:13, 13:40] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:21, 07:21](965 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:25, 07:18](953 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:04, 16:26](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:10, 09:05] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:19, 03:27](1876 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:26](1812 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:20, 03:06](1128 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:19, 03:08](1119 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:19, 03:10](1124 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:18, 03:30](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:22, 03:30](1874 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:19, 03:07](1124 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:25, 07:35](1660 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:11, 07:16](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 03:32](1875 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:53](4826 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:54](4834 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:38] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:21, 07:00](1763 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:31] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:18, 03:28](1852 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:15] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:14](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 00:46](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:32](313 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:38] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:38](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:20](449 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:48] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:51, 04:32](1991 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:44] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:49, 05:20](2004 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:20] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:19, 03:44](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:53, 03:04](1086 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:45] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:04, 05:32](1905 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 12:54] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:25, 02:37](1915 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:32] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:45, 04:28](1981 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:34, 05:34](1772 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:36, 05:50](1788 MB) - -PASS -- COMPILE 'atmaq_intel' [13:10, 11:51] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:08, 18:51](2915 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:34, 22:30](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:29] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:30, 39:51](2929 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:26] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:33, 14:08](1089 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [14:10, 12:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [08:13, 05:29](568 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 15:49] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:31, 15:45](2117 MB) +PASS -- TEST 'cpld_control_gefs_intel' [31:45, 19:19](3066 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:43, 06:15](2737 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [33:02, 20:14](3090 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:52] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:06, 20:06](1970 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:25, 21:50](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:30, 08:24](1234 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:40, 09:32](2096 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:15, 24:13](1892 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:30] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:53, 20:19](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:08] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:53](1952 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:49] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:01, 16:58](2184 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:00, 15:45](2186 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:01, 08:32](1782 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:45, 15:32](2205 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:02, 08:23](1763 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:41, 12:13](2300 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:45, 15:39](2172 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:41, 13:31](2069 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:02, 15:46](2188 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:03, 15:32](2676 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:36, 08:44](2852 MB) + +PASS -- COMPILE 's2swal_intel' [18:11, 17:02] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:57, 16:40](2148 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:07, 08:30](1750 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 07:52](2157 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:58] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:07, 15:19](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:28, 06:50](2092 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:30, 13:37](2212 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:45] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:52](2034 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:18] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:39](2077 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:56] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:43, 16:02](2191 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 22:21] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:26, 17:32](2036 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:45, 08:14](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:27, 20:19](1937 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:01, 08:42](3054 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:04, 03:00](3035 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:02, 01:57](2485 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:52](2242 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:41, 01:14](2230 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:40, 01:01](1551 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:39, 01:57](2243 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:33, 01:19](2238 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:38, 00:57](1553 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:44, 01:19](2167 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:40, 01:05](2166 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:35, 01:10](1504 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:53] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 28:12](2003 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:13] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:43](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:33, 02:38](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:49](1603 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:45](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:50](1599 MB) +PASS -- TEST 'control_c48_intel' [10:36, 09:10](1712 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:16](843 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:36, 09:20](1703 MB) +PASS -- TEST 'control_c192_intel' [10:46, 08:15](1793 MB) +PASS -- TEST 'control_c384_intel' [12:46, 09:55](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [15:24, 10:15](1342 MB) +PASS -- TEST 'control_stochy_intel' [03:28, 01:52](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](490 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:43](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](657 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:47, 03:19](949 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:44](654 MB) +PASS -- TEST 'control_p8_intel' [06:20, 03:18](1891 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:31](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:42, 03:13](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:39, 03:11](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:49, 03:22](1923 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:35, 02:20](2409 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 01:56](1101 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:26, 03:15](1885 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:33, 01:56](1136 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:19](1877 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:06, 03:54](1978 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:57, 05:38](1897 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:30, 04:54](1943 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:34, 03:32](1904 MB) +PASS -- TEST 'merra2_thompson_intel' [06:39, 03:57](1893 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:29, 05:37](1908 MB) +PASS -- TEST 'regional_control_intel' [08:43, 06:26](1087 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 03:32](1104 MB) +PASS -- TEST 'regional_decomp_intel' [08:44, 06:48](1075 MB) +PASS -- TEST 'regional_2threads_intel' [06:51, 04:32](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [08:56, 06:28](1369 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:51, 06:27](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:44, 06:26](1095 MB) +PASS -- TEST 'regional_wofs_intel' [09:42, 07:50](1907 MB) + +PASS -- COMPILE 'rrfs_intel' [14:13, 12:36] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [07:09, 04:32](1055 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 05:09](1355 MB) +PASS -- TEST 'rap_decomp_intel' [07:08, 04:40](1039 MB) +PASS -- TEST 'rap_2threads_intel' [08:26, 05:19](1127 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 02:28](1005 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:10, 04:30](1040 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:06, 04:39](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:39, 02:27](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:34, 04:22](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:26](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:08, 05:00](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:23](965 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:15](1042 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 09:37](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:22](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 11:41] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:38, 06:34](1043 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:30](744 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 11:42] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [14:50, 12:57](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:53] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 03:16](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [08:47, 06:15](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:05] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:32, 02:16](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:37, 02:27](1621 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:05](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:47](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:15](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 02:45](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:33, 02:48](1693 MB) +PASS -- TEST 'control_debug_p8_intel' [04:51, 02:45](1914 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:37](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:51](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:52](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:52](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:59](1220 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:03](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:40, 05:13](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:01](1221 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:07](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:59](1227 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:02](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:51](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 04:57](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:52](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:56](1225 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:52](1217 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:17] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:51, 12:55](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:36] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:52](1233 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:16, 03:55](941 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 03:47](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:20, 04:37](973 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:46, 04:24](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:04, 03:56](910 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:29, 02:08](894 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 02:06](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 11:53] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:08, 03:41](1324 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:28](1233 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:55, 03:44](1357 MB) +PASS -- TEST 'conus13km_restart_intel' [03:53, 02:04](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:46] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:35](1012 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:14, 04:21] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:52](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:46](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [24:54, 23:10](1366 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:57, 21:54](1056 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 21:41](1302 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:59, 23:05](1395 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:58, 22:32](1434 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:14, 04:34] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 04:54](1178 MB) + +PASS -- COMPILE 'hafsw_intel' [16:15, 14:52] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:54](908 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:26, 05:58](1085 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 04:29](1225 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 07:05](970 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:22, 29:03](999 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:26, 33:41](1019 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 06:48](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 08:15](527 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:24](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:23, 08:46](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:44](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:57, 04:18](548 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:18](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:31](405 MB) +PASS -- TEST 'gnv1_nested_intel' [08:01, 04:19](1736 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:14, 05:31] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 12:38](575 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:43] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:02, 15:02](748 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:16, 15:16](722 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:14, 14:46] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:30, 11:06](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:13, 13:37] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:14, 07:15](961 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:14, 08:52](948 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:12](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:56] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:27](1870 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:26](1823 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:07](1135 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:07](1128 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:08](1113 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:27](1865 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:27](1873 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 03:07](1126 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:40](1662 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:09, 07:14](1031 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:27](1872 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:52](4831 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:19, 05:55](4820 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:30] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:59](1774 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:45] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 03:27](1869 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:13] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:01](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:42](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:31](314 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:36] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:28, 00:35](568 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:20](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:22] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 04:01](1998 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:23] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:00, 05:02](2004 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:46] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:23, 03:42](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:09](1077 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:31] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:54](1897 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 13:00] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:15](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:17] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:15, 05:42](1977 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:59, 05:21](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:28](1795 MB) + +PASS -- COMPILE 'atmaq_intel' [13:10, 11:36] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:05, 18:35](2917 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [25:57, 22:15](2911 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:41] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:56, 39:16](2932 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:28] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:32, 13:33](1084 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [14:11, 12:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [08:09, 05:19](574 MB) SYNOPSIS: -Starting Date/Time: 20250922 12:09:30 -Ending Date/Time: 20250922 14:53:04 -Total Time: 02h:44m:27s +Starting Date/Time: 20250926 14:12:03 +Ending Date/Time: 20250926 16:17:28 +Total Time: 02h:06m:08s Compiles Completed: 45/45 Tests Completed: 210/210 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index 73907ce977..fbb0971fcc 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: -0f02ee3314bf2365c92f919d2d38e034a7d0eb8e +d4eeb023bef9a3a10e1323812c7089df427d2ff7 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,513 +40,439 @@ 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-20250918 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4130519 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3645576 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:48] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:54, 06:38](2249 MB) -PASS -- TEST 'cpld_control_gefs_intel' [43:23, 21:40](3250 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [14:58, 05:28](2971 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [55:54, 33:35](3443 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:11, 14:17] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 11:58](2053 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 13:21](2596 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 05:21](1488 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:57, 06:06](2352 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:43, 20:14](1993 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:52] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:33, 12:42](2021 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:52] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [18:54, 13:12](2082 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:21] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:59, 07:28](2494 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:00, 07:00](2504 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:58, 03:51](2255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:57, 07:15](2366 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:00, 03:49](1992 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:56, 15:36](2997 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:54, 07:17](2433 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:49, 11:45](2324 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:59, 07:13](2501 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:37, 18:47](3634 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:11, 12:14](3489 MB) - -PASS -- COMPILE 's2swal_intel' [10:11, 08:48] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [16:00, 07:30](2540 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:03, 03:50](2308 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:52, 05:33](3147 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:11] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:45, 06:29](2072 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 04:58](2986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:56] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:04, 09:03](2385 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:29] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:52, 04:28](2121 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:40] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:46, 03:26](2169 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:31] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:54, 06:40](2500 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:12, 12:49] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:50, 10:53](2169 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 05:30](1675 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:42, 15:26](2107 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:16](3034 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:30, 03:17](3021 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:32, 00:53](2467 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:26, 00:53](2213 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:32](2209 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:27, 01:50](1533 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:51](2210 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:31](2210 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:27, 02:15](1533 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:33](2137 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:26](2140 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:26, 00:23](1490 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:41] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:44, 19:10](2179 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:27] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [09:16, 02:50](1358 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:18, 01:37](2215 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:19, 01:58](2243 MB) -PASS -- TEST 'control_latlon_intel' [03:17, 01:41](2228 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 01:43](2229 MB) -PASS -- TEST 'control_c48_intel' [06:17, 04:46](1671 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:17, 10:47](812 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:17, 04:50](1671 MB) -PASS -- TEST 'control_c192_intel' [06:27, 04:59](1813 MB) -PASS -- TEST 'control_c384_intel' [08:11, 06:04](2099 MB) -PASS -- TEST 'control_c384gdas_intel' [09:53, 06:20](1941 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:13](1308 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:43](1214 MB) -PASS -- TEST 'control_lndp_intel' [02:16, 01:07](1305 MB) -PASS -- TEST 'control_iovr4_intel' [04:17, 02:00](1299 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:27, 04:10](1611 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 01:50](1305 MB) -PASS -- TEST 'control_p8_intel' [03:35, 02:05](2519 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:38, 02:17](2525 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 02:04](2517 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:39, 02:11](2528 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:37, 05:41](2560 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:49, 10:08](2387 MB) -PASS -- TEST 'control_restart_p8_intel' [03:35, 01:25](1810 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:07](2502 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:17](1842 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:39, 02:20](2522 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:32, 01:48](2018 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:36](2510 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 05:43](2595 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:37, 02:15](2517 MB) -PASS -- TEST 'merra2_thompson_intel' [04:37, 02:29](2529 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:25, 03:42](2553 MB) -PASS -- TEST 'regional_control_intel' [13:34, 11:23](1722 MB) -PASS -- TEST 'regional_restart_intel' [03:29, 02:00](1697 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 03:48](1710 MB) -PASS -- TEST 'regional_2threads_intel' [09:31, 02:09](1567 MB) -PASS -- TEST 'regional_noquilt_intel' [06:41, 03:36](1994 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 03:44](1725 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:35](1723 MB) -PASS -- TEST 'regional_wofs_intel' [06:28, 04:52](2636 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 05:53] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [05:31, 03:02](1788 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:46, 02:59](1621 MB) -PASS -- TEST 'rap_decomp_intel' [05:39, 02:53](1719 MB) -PASS -- TEST 'rap_2threads_intel' [08:43, 02:42](1180 MB) -PASS -- TEST 'rap_restart_intel' [03:54, 01:31](1779 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:27, 03:02](1787 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:25, 06:11](1746 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:25, 01:51](1738 MB) -PASS -- TEST 'hrrr_control_intel' [05:33, 02:41](1779 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:27, 03:10](1713 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:22, 02:37](1176 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:28](1710 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:35, 05:02](1917 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 06:31](2650 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:20, 07:49](3024 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:22] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:31, 05:04](1747 MB) -PASS -- TEST 'control_ras_intel' [05:16, 02:35](1593 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:37] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [10:36, 08:28](2419 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:30] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:34, 02:33](2525 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 03:44](1723 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:39] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:20, 01:37](2247 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:21, 01:41](2270 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:18, 02:34](1486 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:18, 01:56](1488 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:29, 03:06](1794 MB) -PASS -- TEST 'control_ras_debug_intel' [10:18, 02:01](1492 MB) -PASS -- TEST 'control_diag_debug_intel' [12:23, 02:31](2325 MB) -PASS -- TEST 'control_debug_p8_intel' [11:29, 02:00](2567 MB) -PASS -- TEST 'regional_debug_intel' [21:28, 11:51](1628 MB) -PASS -- TEST 'rap_control_debug_intel' [13:19, 03:38](1881 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:19, 03:28](1860 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:56](1875 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 03:34](1870 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 03:40](1879 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:44](1958 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:38](1874 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 03:35](1867 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:30](1865 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:22, 07:35](1879 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:30](1871 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:17, 07:48](1882 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:36](1873 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:34](1877 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:34](1880 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:27, 06:34](1864 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:13] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:34, 08:59](2314 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:32] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 02:48](1484 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 04:56](1791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:21, 02:25](1701 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:25, 02:07](1076 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 01:54](1050 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:30, 08:41](1723 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:34](1660 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:18](1614 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:22] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:42, 02:12](1765 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:33, 00:49](1785 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:33, 01:53](1813 MB) -PASS -- TEST 'conus13km_restart_intel' [09:41, 08:08](1565 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:52] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:27, 05:31](1799 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:13] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:26](1754 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:19, 03:20](1753 MB) -FAILED: TEST TIMED OUT -- TEST 'conus13km_debug_intel' [, ]( MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:39, 14:41](1456 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:34, 08:33](1848 MB) -FAILED: TEST TIMED OUT -- TEST 'conus13km_debug_decomp_intel' [, ]( MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:35, 16:32](1894 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:11] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 08:05](1875 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 08:09] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:42, 03:59](1193 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:51, 03:56](1412 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 02:42](1466 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:50, 04:46](1318 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [34:48, 31:31](1343 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:01, 23:46](1420 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 03:24](821 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 04:39](816 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 01:46](523 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:58, 04:38](617 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:34, 02:30](764 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:35, 02:13](763 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:32, 02:45](811 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:58](526 MB) -PASS -- TEST 'gnv1_nested_intel' [04:48, 02:49](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:57] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:30, 08:14](737 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:47] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:33, 26:32](904 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:37, 26:27](1082 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 08:12] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:15, 18:37](1094 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 07:59] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:42](1298 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:46, 04:29](1288 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:41, 11:39](1819 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 04:46] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:52](1944 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 02:32](1883 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:05](1195 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:54](1199 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 01:52](1206 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 01:53](1949 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:15, 10:31](1946 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:44](1201 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:32](1813 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:55, 05:35](1362 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 13:34](1939 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:18](4789 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:39](4790 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 02:29] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:57](1855 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:07] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:48](1945 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:43] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 00:44](360 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:32](624 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:23](622 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:11] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:45, 02:41](2830 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:52] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:36, 03:32](2871 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:31] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:36, 02:28](1923 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:31, 01:27](1261 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:16] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:40](1958 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 08:06] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:32, 01:53](2695 MB) - -PASS -- COMPILE 'atmaero_intel' [07:10, 06:05] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:41, 03:10](2025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:31, 03:20](2416 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:31, 03:20](2423 MB) - -PASS -- COMPILE 'atmaq_intel' [07:10, 05:32] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:32, 11:12](2877 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:17, 12:59](2876 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:17] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:17, 27:12](2891 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:22] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [30:22, 28:41](1139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:17, 13:23] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:46, 11:55](2065 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:10, 03:27] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:41, 13:15](2088 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:20, 12:43] -PASS -- TEST 'cpld_control_sfs_intelllvm' [14:33, 12:30](2008 MB) - -PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:22] -PASS -- TEST 'cpld_control_p8_intelllvm' [09:56, 07:16](2482 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:48] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:25, 02:38](1726 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:27, 02:56](1795 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:21, 07:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:38, 02:45](822 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:10, 02:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:37, 08:15](722 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:16] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:15, 01:59](1939 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:52] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:15, 04:52](1851 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 02:51] -PASS -- TEST 'control_c48_gnu' [07:21, 05:51](1514 MB) -PASS -- TEST 'control_stochy_gnu' [03:16, 01:58](515 MB) -PASS -- TEST 'control_ras_gnu' [05:15, 03:08](520 MB) -PASS -- TEST 'control_p8_gnu' [04:34, 02:59](1463 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:33, 02:59](1486 MB) -PASS -- TEST 'control_flake_gnu' [05:16, 04:00](560 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 02:53] -PASS -- TEST 'rap_control_gnu' [05:23, 03:31](853 MB) -PASS -- TEST 'rap_decomp_gnu' [05:23, 03:27](853 MB) -PASS -- TEST 'rap_2threads_gnu' [04:26, 02:37](910 MB) -PASS -- TEST 'rap_restart_gnu' [03:28, 01:49](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:25, 03:24](856 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:22, 03:30](854 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:31, 01:48](581 MB) -PASS -- TEST 'hrrr_control_gnu' [05:24, 03:19](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:23, 03:19](840 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:25, 02:33](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [13:24, 12:11](856 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:17, 01:48](580 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:31, 01:45](669 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:26, 06:15](851 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 02:37] -PASS -- TEST 'control_csawmg_gnu' [07:26, 05:39](760 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 04:55] -PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:22](1287 MB) -PASS -- TEST 'regional_debug_gnu' [07:27, 05:36](756 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:49](861 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:46](863 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:55](865 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:48](867 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:10](949 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:47](859 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:51](859 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:28, 01:11](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:12](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:20](1460 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 01:56](861 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 01:48](863 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:27, 03:06](872 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:33] -PASS -- TEST 'control_wam_debug_gnu' [17:33, 15:52](1297 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:27] -PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:48](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:46] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:15](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:21, 03:09](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:28](739 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:25](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:20, 03:08](712 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:41](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 01:40](554 MB) -PASS -- TEST 'conus13km_control_gnu' [04:36, 02:49](905 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:08](907 MB) -PASS -- TEST 'conus13km_decomp_gnu' [30:33, 28:39](902 MB) -PASS -- TEST 'conus13km_restart_gnu' [13:37, 11:29](582 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:17, 06:07] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:47](738 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:14, 04:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:48](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:46](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [20:36, 18:54](924 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [24:37, 22:41](649 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 04:05](923 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [08:32, 07:08](926 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:31, 07:08](991 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:17, 04:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:49](744 MB) - -PASS -- COMPILE 's2swa_gnu' [13:16, 11:58] -PASS -- TEST 'cpld_control_p8_gnu' [09:56, 07:42](1606 MB) - -PASS -- COMPILE 's2s_gnu' [12:12, 10:16] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:47, 06:56](1568 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:10, 01:48] -PASS -- TEST 'cpld_debug_p8_gnu' [06:48, 04:46](1616 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [13:14, 11:34] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:51, 08:52](1569 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 01:49] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:38, 06:36](1580 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:12, 10:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:14, 02:07](1513 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:51] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 07:23](2170 MB) +PASS -- TEST 'cpld_control_gefs_intel' [37:39, 21:44](3268 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [35:30, 06:47](2970 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [47:58, 32:16](3446 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:12, 13:28] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:42, 12:12](2059 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 13:12](2616 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:55, 05:14](1510 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [27:04, 06:04](2385 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:38, 20:31](1998 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:12, 12:54] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:34, 12:48](2000 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:12] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:41, 13:37](2086 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:22] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:57, 07:31](2490 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:00, 07:30](2513 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:55, 03:48](2275 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:52, 06:57](2364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:00, 03:49](1988 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:57, 16:00](3005 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:58, 07:14](2447 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:52, 11:37](2331 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:00, 07:10](2455 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:40, 19:06](3600 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [18:03, 12:26](3493 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:58] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:58, 08:15](2519 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [16:00, 03:49](2290 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:53, 16:19](3152 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:10] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:45, 06:33](2086 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 04:53](2992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:32] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:50, 09:05](2373 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:09] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:39, 04:35](2107 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:23] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 03:23](2190 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:12, 09:18] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:54, 06:34](2531 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 12:33] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:43, 11:18](2172 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:57, 05:22](1669 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:47, 15:24](2118 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:22](3030 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:24](3021 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:31, 00:55](2469 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:27, 00:53](2213 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:27, 00:33](2211 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:26](1534 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:28, 00:51](2209 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:33](2210 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:26, 00:27](1534 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:34](2138 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:27, 00:28](2137 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1488 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 03:48] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 19:11](2180 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 06:35] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [18:19, 02:34](1341 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [22:19, 10:22](2226 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:20, 01:44](2219 MB) +PASS -- TEST 'control_latlon_intel' [05:17, 01:56](2229 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:21, 04:28](2231 MB) +PASS -- TEST 'control_c48_intel' [07:20, 04:49](1672 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 04:23](803 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:20, 04:54](1670 MB) +PASS -- TEST 'control_c192_intel' [19:35, 04:59](1825 MB) +PASS -- TEST 'control_c384_intel' [10:09, 06:05](2089 MB) +PASS -- TEST 'control_c384gdas_intel' [14:49, 06:15](1817 MB) +PASS -- TEST 'control_stochy_intel' [08:17, 01:12](1296 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:17, 00:42](1193 MB) +PASS -- TEST 'control_lndp_intel' [08:17, 01:09](1305 MB) +PASS -- TEST 'control_iovr4_intel' [08:17, 02:05](1302 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:27, 02:09](1607 MB) +PASS -- TEST 'control_iovr5_intel' [07:17, 01:45](1314 MB) +PASS -- TEST 'control_p8_intel' [09:31, 04:51](2529 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 02:15](2518 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:37, 02:05](2533 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:35, 02:05](2529 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:37, 04:26](2549 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [14:38, 10:26](2420 MB) +PASS -- TEST 'control_restart_p8_intel' [03:33, 01:18](1782 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:06](2500 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 01:18](1866 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:38, 02:14](2517 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:32, 01:46](2019 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:31, 03:32](2527 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 02:49](2592 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:37, 02:13](2527 MB) +PASS -- TEST 'merra2_thompson_intel' [17:38, 14:21](2551 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:23, 03:34](2540 MB) +PASS -- TEST 'regional_control_intel' [06:27, 03:36](1721 MB) +PASS -- TEST 'regional_restart_intel' [04:30, 02:10](1698 MB) +PASS -- TEST 'regional_decomp_intel' [06:27, 03:47](1712 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 02:10](1566 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 03:39](1995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 03:37](1720 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:36](1723 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 04:34](2658 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 05:49] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [06:25, 04:59](1765 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:49, 02:47](1599 MB) +PASS -- TEST 'rap_decomp_intel' [05:37, 02:53](1705 MB) +PASS -- TEST 'rap_2threads_intel' [05:23, 02:22](1178 MB) +PASS -- TEST 'rap_restart_intel' [25:31, 01:41](1784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:26, 02:49](1769 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:26, 02:57](1735 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [24:33, 01:40](1775 MB) +PASS -- TEST 'hrrr_control_intel' [06:27, 02:41](1773 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:23, 02:47](1704 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [28:28, 02:15](1173 MB) +PASS -- TEST 'hrrr_control_restart_intel' [23:20, 01:38](1708 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:26, 04:55](1906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:18, 06:24](2653 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:11](2905 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 05:13] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:29, 04:24](1771 MB) +PASS -- TEST 'control_ras_intel' [04:18, 02:19](1588 MB) + +PASS -- COMPILE 'wam_intel' [08:10, 05:28] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [10:34, 08:00](2417 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:10, 05:33] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 02:17](2534 MB) +PASS -- TEST 'regional_control_faster_intel' [05:28, 03:31](1725 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 03:29] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 01:37](2243 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:22, 01:40](2259 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:37, 07:45](1489 MB) +PASS -- TEST 'control_lndp_debug_intel' [26:23, 02:00](1471 MB) +PASS -- TEST 'control_csawmg_debug_intel' [26:31, 03:04](1788 MB) +PASS -- TEST 'control_ras_debug_intel' [25:18, 02:00](1496 MB) +PASS -- TEST 'control_diag_debug_intel' [25:27, 01:57](2327 MB) +PASS -- TEST 'control_debug_p8_intel' [25:28, 01:59](2551 MB) +PASS -- TEST 'regional_debug_intel' [51:29, 29:15](1647 MB) +PASS -- TEST 'rap_control_debug_intel' [25:22, 03:31](1881 MB) +PASS -- TEST 'hrrr_control_debug_intel' [24:22, 03:28](1879 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [24:21, 03:29](1872 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [24:23, 03:31](1869 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:32, 03:33](1885 MB) +PASS -- TEST 'rap_diag_debug_intel' [25:29, 03:56](1965 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:21, 03:32](1871 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:18, 03:37](1871 MB) +PASS -- TEST 'rap_lndp_debug_intel' [23:20, 03:36](1884 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:19, 03:31](1876 MB) +PASS -- TEST 'rap_noah_debug_intel' [22:20, 03:28](1871 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [21:18, 03:32](1876 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:19, 06:00](1870 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [19:29, 03:43](1881 MB) +PASS -- TEST 'rap_flake_debug_intel' [18:22, 03:29](1874 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:31, 06:21](1872 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:04] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:35, 09:06](2316 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:20] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 02:50](1473 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:21, 02:23](1745 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:19](1720 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:24, 01:59](1077 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 01:51](1056 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:26](1672 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:17](1634 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:14](1617 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:10, 05:27] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:36, 01:58](1775 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:48](1786 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:31, 02:02](1819 MB) +PASS -- TEST 'conus13km_restart_intel' [03:35, 01:12](1554 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:28] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:32, 12:01](1948 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:22] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:23](1744 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:16, 03:32](1741 MB) +PASS -- TEST 'conus13km_debug_intel' [16:45, 14:37](1844 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 15:13](1454 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:33, 08:40](1847 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [18:34, 15:45](1874 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:33, 15:00](1897 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:10] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 03:45](1859 MB) + +PASS -- COMPILE 'hafsw_intel' [11:10, 08:27] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:41, 04:00](1191 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:50, 04:08](1384 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:21, 02:44](1482 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:04, 04:43](1314 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [35:02, 31:59](1345 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:03, 23:39](1401 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:24](802 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:44, 04:28](820 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:05](532 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:55, 04:40](626 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:24](761 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:28, 02:12](748 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:31, 02:45](821 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:50](535 MB) +PASS -- TEST 'gnv1_nested_intel' [05:47, 02:48](1764 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:31] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:34, 08:16](747 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:10, 08:03] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:53, 26:17](872 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:43, 27:24](1068 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 07:58] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:15, 17:41](1103 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 08:23] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:26](1296 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 04:27](1294 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:41, 11:40](1814 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:23] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 01:52](1945 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:10](1889 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:44](1196 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:01](1195 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 01:46](1204 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 01:57](1936 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 01:59](1936 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 06:34](1207 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:32](1841 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:52, 05:27](1360 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 01:58](1941 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:13](4788 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:01](4786 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:15] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:12](1844 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:20] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:08](1941 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:40] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:42](366 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:33](623 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:23, 00:23](619 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 05:59] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:39](2841 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 05:48] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:35, 03:27](2880 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:16] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:36, 02:30](1928 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 01:28](1251 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:08] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:33](1962 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:24] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:33, 06:40](2701 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:30] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:39, 03:03](2016 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 03:17](2400 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:23](2432 MB) + +PASS -- COMPILE 'atmaq_intel' [07:10, 05:25] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:27, 11:20](2873 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:20, 13:09](2874 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:07] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:32, 26:48](2890 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:13] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [09:26, 07:01](1133 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:10, 12:23] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:00, 12:00](2059 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:10, 03:25] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:46, 13:11](2088 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [15:11, 12:47] +PASS -- TEST 'cpld_control_sfs_intelllvm' [14:35, 12:32](2002 MB) + +PASS -- COMPILE 's2swa_intelllvm' [10:10, 08:28] +PASS -- TEST 'cpld_control_p8_intelllvm' [10:55, 07:32](2522 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:10] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:26, 02:22](1714 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:14, 05:14] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:26, 02:52](1813 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:16, 07:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:36, 02:46](805 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [04:14, 02:22] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:34, 08:17](722 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [06:14, 04:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:14, 01:55](1944 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:25] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:14, 04:11](1853 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 02:52] +PASS -- TEST 'control_c48_gnu' [08:20, 05:39](1513 MB) +PASS -- TEST 'control_stochy_gnu' [04:15, 01:57](515 MB) +PASS -- TEST 'control_ras_gnu' [06:15, 03:13](545 MB) +PASS -- TEST 'control_p8_gnu' [05:33, 02:58](1453 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:33, 02:59](1463 MB) +PASS -- TEST 'control_flake_gnu' [06:18, 04:08](560 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 02:48] +PASS -- TEST 'rap_control_gnu' [11:30, 09:03](854 MB) +PASS -- TEST 'rap_decomp_gnu' [06:22, 03:26](856 MB) +PASS -- TEST 'rap_2threads_gnu' [04:25, 02:38](908 MB) +PASS -- TEST 'rap_restart_gnu' [04:29, 01:49](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [06:24, 03:22](854 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:34, 03:23](854 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:36, 01:51](580 MB) +PASS -- TEST 'hrrr_control_gnu' [05:29, 03:21](855 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 03:20](840 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:33](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 03:26](856 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:22, 01:49](579 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:18, 01:45](662 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:27, 07:01](850 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:35] +PASS -- TEST 'control_csawmg_gnu' [07:29, 05:41](759 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 04:45] +PASS -- TEST 'control_diag_debug_gnu' [04:23, 01:19](1286 MB) +PASS -- TEST 'regional_debug_gnu' [22:36, 20:07](764 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:17, 01:49](862 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 01:48](862 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 01:46](865 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 01:48](867 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:04](948 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 02:49](859 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 01:53](861 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:11](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:14](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:23](1439 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 01:51](861 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [08:17, 05:14](862 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:27, 02:59](873 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:24] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:31](1310 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:35] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:47](745 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:51] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:25, 03:16](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:23, 03:08](712 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:21, 02:27](737 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:22, 02:23](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:21, 03:10](714 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:21, 01:42](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 01:48](558 MB) +PASS -- TEST 'conus13km_control_gnu' [22:50, 19:46](910 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:16](907 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:37, 02:51](908 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:33, 01:44](586 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 03:39](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 04:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:17, 01:54](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:57](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:39, 06:56](922 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:00, 06:51](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:56, 04:03](925 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [21:54, 18:54](926 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:16](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 04:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 01:50](744 MB) + +PASS -- COMPILE 's2swa_gnu' [12:11, 10:48] +PASS -- TEST 'cpld_control_p8_gnu' [11:00, 07:35](1602 MB) + +PASS -- COMPILE 's2s_gnu' [12:11, 10:10] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:51, 06:58](1557 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 01:57] +PASS -- TEST 'cpld_debug_p8_gnu' [08:47, 05:22](1625 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:37] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:41, 08:58](1566 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:43] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:37, 06:37](1570 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [12:10, 10:04] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:18](1511 MB) SYNOPSIS: -Starting Date/Time: 20250922 17:27:28 -Ending Date/Time: 20250922 19:22:54 -Total Time: 01h:56m:00s +Starting Date/Time: 20250926 19:28:19 +Ending Date/Time: 20250926 21:40:19 +Total Time: 02h:12m:42s Compiles Completed: 69/69 -Tests Completed: 280/282 -Failed Tests: -* TEST conus13km_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4130519/conus13km_debug_intel/err -* TEST conus13km_debug_decomp_intel: FAILED: TEST TIMED OUT --- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4130519/conus13km_debug_decomp_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: -0f02ee3314bf2365c92f919d2d38e034a7d0eb8e - -Submodule hashes used in testing: - 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) - 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) - 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) - 374373588e22cd86f1b8eb670d489c2967a6b40a CMEPS-interface/CMEPS (cmeps_v0.4.1-2324-g3743735) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) - 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) - 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) - c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) - 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/feature/mpas-in-ufs) - 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) --179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd --3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) - 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-20250918 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_566768 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:04] ( 793 warnings 420 remarks ) -PASS -- TEST 'conus13km_debug_intel' [30:41, 28:38](1844 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [17:33, 15:44](1876 MB) - -SYNOPSIS: -Starting Date/Time: 20250922 19:58:02 -Ending Date/Time: 20250922 21:03:42 -Total Time: 01h:05m:43s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 282/282 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 3ed3dd024f..3b9a637656 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: -523a632f4ff1261efae0ca2e49aa5db04a79ab5b +da282905810dba20995a517818996e4ba66d8f33 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 0e381d5004c605f9da145254d18c5c3a8e4007e4 UFSATM (heads/develop) + 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - bca8f11d44f65a7fac83065a8d9ae23bd09c8b25 UFSATM/ccpp/physics (EP4-1856-gbca8f11d) + a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -40,261 +40,261 @@ 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-20250918 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2873185 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250926 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_21060 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:43, 16:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:56, 08:21](3349 MB) -PASS -- TEST 'cpld_control_gefs_intel' [39:28, 18:14](4121 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [30:05, 08:14](3909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:40, 13:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:48, 16:26](1883 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:28, 17:18](1927 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 07:57](1070 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:20, 08:03](1915 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:41, 18:42](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:41, 13:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:30, 16:43](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:27, 04:52] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:08, 22:19](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:39, 11:50] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:19, 10:30](3381 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:02, 10:57](3378 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:35, 05:59](3249 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:13, 10:03](3397 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:16, 05:39](3270 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 10:26](3609 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:05, 10:52](3359 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:13, 09:32](3321 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:39, 11:12](3381 MB) - -PASS -- COMPILE 's2swal_intel' [14:40, 11:58] ( 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:24, 09:54](3344 MB) - -PASS -- COMPILE 's2sw_intel' [13:38, 11:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:48, 06:45](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:58, 09:37](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:38, 10:57] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:51, 07:49](1980 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:48, 16:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:54, 10:04](3383 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:41, 12:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:21, 16:47](1912 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:08, 07:59](1094 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:22, 19:02](1893 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [12:44, 08:17](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [08:44, 03:43](2886 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:48, 02:21](2312 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:03, 01:50](2112 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:57, 01:47](2112 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [06:24, 03:08](1486 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [05:03, 01:47](2107 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [06:02, 02:33](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:06, 02:36](1485 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [05:04, 01:47](2038 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [08:02, 04:07](2040 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:06, 01:51](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:40, 05:31] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:13, 25:36](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:47, 10:33] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:46, 04:22](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:00, 02:56](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:13, 03:07](1581 MB) -PASS -- TEST 'control_latlon_intel' [05:44, 02:53](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:56, 02:53](1566 MB) -PASS -- TEST 'control_c48_intel' [09:01, 06:48](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:04, 06:11](722 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:04, 07:01](1595 MB) -PASS -- TEST 'control_c192_intel' [10:24, 07:42](1709 MB) -PASS -- TEST 'control_c384_intel' [14:28, 09:14](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [18:03, 09:47](1163 MB) -PASS -- TEST 'control_stochy_intel' [04:44, 02:01](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:48, 01:26](406 MB) -PASS -- TEST 'control_lndp_intel' [04:48, 01:54](648 MB) -PASS -- TEST 'control_iovr4_intel' [05:46, 03:00](624 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:15, 04:01](918 MB) -PASS -- TEST 'control_iovr5_intel' [06:04, 02:56](635 MB) -PASS -- TEST 'control_p8_intel' [09:30, 04:08](1854 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:59, 04:10](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:46, 04:13](1865 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:42, 03:47](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:06, 03:52](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:12, 03:09](2410 MB) -PASS -- TEST 'control_restart_p8_intel' [07:24, 02:37](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:52, 04:00](1845 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:13, 02:22](1007 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:51, 03:55](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:47, 03:32](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:26, 05:52](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:46, 05:13](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:22, 03:47](1876 MB) -PASS -- TEST 'merra2_thompson_intel' [09:06, 04:22](1867 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:40, 06:14](1863 MB) -PASS -- TEST 'regional_control_intel' [09:11, 06:14](872 MB) -PASS -- TEST 'regional_restart_intel' [07:11, 03:57](877 MB) -PASS -- TEST 'regional_decomp_intel' [09:12, 06:18](870 MB) -PASS -- TEST 'regional_2threads_intel' [07:04, 03:49](989 MB) -PASS -- TEST 'regional_noquilt_intel' [09:10, 06:02](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 05:45](871 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:09, 05:50](876 MB) -PASS -- TEST 'regional_wofs_intel' [10:09, 07:07](1600 MB) - -PASS -- COMPILE 'rrfs_intel' [11:26, 09:08] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:14, 04:16](1020 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:04, 04:41](1215 MB) -PASS -- TEST 'rap_decomp_intel' [08:35, 04:41](1009 MB) -PASS -- TEST 'rap_2threads_intel' [07:51, 04:00](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 02:32](765 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:55, 04:30](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:47, 04:30](999 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 02:32](756 MB) -PASS -- TEST 'hrrr_control_intel' [08:01, 04:23](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:00, 04:28](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:03, 03:52](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:43, 02:34](765 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:43, 07:41](1011 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:59, 09:37](1972 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:54, 09:34](1962 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:44] -PASS -- TEST 'control_csawmg_intel' [10:34, 07:22](950 MB) -PASS -- TEST 'control_ras_intel' [06:42, 04:03](662 MB) - -PASS -- COMPILE 'wam_intel' [09:40, 08:03] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:53, 12:48](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:27, 08:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:44, 03:54](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [09:14, 06:08](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:35, 04:55] ( 887 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:01, 02:46](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 03:01](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:51](826 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:39, 03:24](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:06, 05:38](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [06:43, 03:30](833 MB) -PASS -- TEST 'control_diag_debug_intel' [05:50, 03:26](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [07:03, 04:33](1893 MB) -PASS -- TEST 'regional_debug_intel' [21:23, 19:01](922 MB) -PASS -- TEST 'rap_control_debug_intel' [08:43, 05:46](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:02, 05:42](1182 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:06, 05:52](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:49, 05:50](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:51, 05:57](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:28, 06:06](1268 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:03, 05:59](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:48, 05:54](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:42, 05:49](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:43, 05:44](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:45, 05:41](1189 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:51, 05:48](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:59, 09:07](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 05:46](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:39, 05:56](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 09:37](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:41] ( 845 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:59, 15:10](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:43, 04:24](1036 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:10, 03:38](890 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:22, 03:47](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:50, 03:35](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:35, 03:18](931 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 03:45](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 02:02](718 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:06](730 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:05, 03:18](1016 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:29, 01:34](1136 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:16, 03:20](1028 MB) -PASS -- TEST 'conus13km_restart_intel' [05:31, 01:58](689 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:39, 04:27](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 03:57] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:40, 05:55](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:18, 05:36](1073 MB) -PASS -- TEST 'conus13km_debug_intel' [28:39, 24:05](1042 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:41, 24:12](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:45, 13:25](1218 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:11, 24:40](1081 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:41, 24:00](1146 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:03] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:56, 05:49](1090 MB) - -PASS -- COMPILE 'hafsw_intel' [12:27, 10:10] ( 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:22, 05:40](697 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:38, 06:11](922 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:48, 03:54](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:52, 07:23](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:38, 12:10](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:40, 13:28](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:02, 05:43](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 07:22](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:55, 03:29](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:47, 08:26](427 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:30, 04:10](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:46, 03:57](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 04:47](548 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:49, 01:53](412 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:28, 04:19] ( 1481 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:00, 14:10](590 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:33, 09:28] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:56, 07:36](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:45, 07:45](781 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:30, 09:49] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:19, 05:51](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:26, 09:04] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:02, 07:01](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 07:04](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:01, 16:27](896 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:30, 10:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:17, 04:27](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:40, 09:34] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:20, 04:34] ( 892 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:29, 08:18] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:23, 05:21](3219 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:02, 05:33](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:52, 05:30](3202 MB) - -PASS -- COMPILE 'atmaq_intel' [10:25, 08:01] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:44, 16:44](2389 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:48, 20:00](2406 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:21, 03:45] ( 870 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:32, 41:14](1782 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:33] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:48, 07:51](3348 MB) +PASS -- TEST 'cpld_control_gefs_intel' [36:55, 18:10](4106 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [28:55, 08:12](3915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 12:49] ( 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 16:04](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:02, 17:29](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:00, 07:55](1069 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:08, 08:16](1928 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:54, 18:14](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:32, 13:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:44, 16:06](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 04:57] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:53, 20:29](1940 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:23, 09:41](3381 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:49, 09:57](3379 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:02, 05:46](3264 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:06, 09:49](3408 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:51, 05:36](3290 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:01, 09:26](3619 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:59, 09:37](3372 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:41, 08:07](3329 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:56, 09:48](3378 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:51] ( 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:26, 10:16](3339 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 11:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:07, 06:08](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 08:25](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:47] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 05:33](1981 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:50] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 09:26](3386 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:32, 12:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:25, 15:57](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 08:08](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:21, 18:14](1895 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:00, 06:54](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:52, 02:51](2894 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:49, 02:27](2321 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:07, 01:51](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:08, 01:28](2113 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:13, 01:46](1488 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:07, 01:57](2106 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:07, 01:33](2110 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:13, 02:32](1487 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:07, 01:42](2040 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:07, 01:29](2039 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:10, 01:34](1396 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:24, 04:53] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 24:27](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:29, 09:39] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:45, 04:20](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 02:43](1578 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:56](1588 MB) +PASS -- TEST 'control_latlon_intel' [04:39, 02:52](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:53, 02:59](1588 MB) +PASS -- TEST 'control_c48_intel' [09:08, 06:50](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:05, 06:14](723 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:57, 06:59](1600 MB) +PASS -- TEST 'control_c192_intel' [10:19, 07:32](1707 MB) +PASS -- TEST 'control_c384_intel' [13:52, 09:13](2007 MB) +PASS -- TEST 'control_c384gdas_intel' [16:59, 09:44](1178 MB) +PASS -- TEST 'control_stochy_intel' [04:43, 02:02](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:47, 01:24](408 MB) +PASS -- TEST 'control_lndp_intel' [04:38, 02:06](643 MB) +PASS -- TEST 'control_iovr4_intel' [05:51, 03:04](637 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:09, 03:56](917 MB) +PASS -- TEST 'control_iovr5_intel' [05:43, 03:06](639 MB) +PASS -- TEST 'control_p8_intel' [07:37, 03:47](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:35, 03:59](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:41, 03:44](1866 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:27, 03:45](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:39, 03:57](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:07, 02:57](2438 MB) +PASS -- TEST 'control_restart_p8_intel' [06:30, 02:39](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:55, 03:47](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:16, 02:19](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:49, 03:46](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:51, 03:24](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:22, 05:46](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:30, 05:01](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:00, 04:00](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [08:46, 04:25](1868 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [10:38, 06:14](1875 MB) +PASS -- TEST 'regional_control_intel' [08:09, 05:55](872 MB) +PASS -- TEST 'regional_restart_intel' [07:03, 04:01](883 MB) +PASS -- TEST 'regional_decomp_intel' [08:09, 06:01](874 MB) +PASS -- TEST 'regional_2threads_intel' [06:05, 03:44](1003 MB) +PASS -- TEST 'regional_noquilt_intel' [08:13, 05:46](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:14, 06:03](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:38](870 MB) +PASS -- TEST 'regional_wofs_intel' [09:08, 07:06](1608 MB) + +PASS -- COMPILE 'rrfs_intel' [10:27, 08:34] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:27, 04:26](1020 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:36, 04:36](1216 MB) +PASS -- TEST 'rap_decomp_intel' [07:29, 04:38](1016 MB) +PASS -- TEST 'rap_2threads_intel' [06:59, 03:49](1095 MB) +PASS -- TEST 'rap_restart_intel' [05:59, 02:34](773 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:54, 04:13](1020 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:48, 04:25](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 02:40](772 MB) +PASS -- TEST 'hrrr_control_intel' [07:45, 04:09](1011 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 04:19](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 03:34](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:01, 02:31](765 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:20, 07:29](1014 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:59, 09:49](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:05, 09:22](1969 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 08:02] +PASS -- TEST 'control_csawmg_intel' [11:06, 07:35](960 MB) +PASS -- TEST 'control_ras_intel' [05:37, 03:33](675 MB) + +PASS -- COMPILE 'wam_intel' [09:28, 07:57] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:36, 12:36](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:46, 03:32](1864 MB) +PASS -- TEST 'regional_control_faster_intel' [08:29, 05:40](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:24, 04:52] ( 887 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:51](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:03, 03:01](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:48, 03:37](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:02, 03:21](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:26, 05:30](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [06:39, 03:59](835 MB) +PASS -- TEST 'control_diag_debug_intel' [05:54, 03:30](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [07:02, 03:48](1906 MB) +PASS -- TEST 'regional_debug_intel' [21:18, 18:55](934 MB) +PASS -- TEST 'rap_control_debug_intel' [08:48, 05:57](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:00, 05:34](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:43, 05:52](1195 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:44, 05:55](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:55, 05:27](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:08, 06:06](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:53, 05:55](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:45, 05:50](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:39, 05:59](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:49, 05:41](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:00, 05:35](1199 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:55, 05:41](1200 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:59, 09:04](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:52, 05:44](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:44, 05:48](1201 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 09:33](1202 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:22, 03:46] ( 845 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:44, 14:27](1707 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 04:03](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 03:33](892 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:08, 03:26](891 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:53, 03:15](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:20, 03:16](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:37](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 02:04](733 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 01:58](730 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:56] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:45, 03:07](1021 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:32](1137 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:27, 02:59](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [05:25, 02:02](689 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 08:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:23, 04:33](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:10] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:03, 05:38](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:05, 05:26](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [26:52, 23:57](1099 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 23:54](798 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:16, 13:42](1207 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [26:47, 24:23](1104 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:09, 23:53](1170 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:15] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:58, 05:46](1111 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:55] ( 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:09, 05:43](708 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:46, 06:05](923 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:55, 03:48](1047 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 07:07](763 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:10, 12:12](805 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 13:34](819 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:45, 05:52](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:22, 07:17](478 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 03:17](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:56, 08:19](426 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:26, 04:13](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:53](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 04:47](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:46, 01:50](412 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:23, 04:12] ( 1481 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:44, 14:10](649 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:30, 09:29] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:42, 07:35](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:40, 07:44](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:40] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 05:42](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:29, 09:31] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:05, 06:43](762 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:07, 06:41](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:45, 16:25](907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:30, 10:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:59, 04:26](1913 MB) + +PASS -- COMPILE 'atml_intel' [11:29, 09:30] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:19, 04:44] ( 892 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:25, 08:19] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:16, 05:02](3238 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 05:12](3210 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:26](3218 MB) + +PASS -- COMPILE 'atmaq_intel' [09:29, 08:08] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:48, 16:52](2390 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [24:27, 19:42](2446 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:20, 03:58] ( 870 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:50, 41:01](1875 MB) SYNOPSIS: -Starting Date/Time: 20250922 20:28:28 -Ending Date/Time: 20250922 22:27:47 -Total Time: 02h:00m:33s +Starting Date/Time: 20250929 15:41:51 +Ending Date/Time: 20250929 17:35:00 +Total Time: 01h:54m:30s Compiles Completed: 34/34 Tests Completed: 176/176 diff --git a/tests/run_test.sh b/tests/run_test.sh index 103bbe7210..e60fdd7486 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -126,8 +126,8 @@ case ${MACHINE_ID} in module load nccmp/1.9.0.1 ;; gaeac6) - module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core - module load stack-intel/2023.2.0 stack-cray-mpich/8.1.29 + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.9.2/envs/ue-intel-2023.2.0/install/modulefiles/Core + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.30 module load nccmp/1.9.0.1 #module use modulefiles #module load modules.fv3 diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..8a7b8144dd 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,101 @@ +cpld_control_p8_mixedmode intel +cpld_control_gefs intel +cpld_restart_gefs intel +cpld_dcp_gefs intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_restart_gfsv17_iau intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_control_p8_lnd intel +cpld_restart_p8_lnd intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_control_c48_5deg intel +cpld_warmstart_c48_5deg intel +cpld_restart_c48_5deg intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48_lnd_iau intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_p8_ugwpv1_tempo intel +control_p8_ugwpv1_tempo_aerosol intel +control_p8_ugwpv1_tempo_aerosol_hail intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +merra2_hf_thompson intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +gnv1_c96_no_nest_debug intel +control_wam_debug intel +conus13km_debug intel +gnv1_nested intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +rrfs_v1beta gnu +control_diag_debug gnu +control_debug_p8 gnu +gnv1_c96_no_nest_debug gnu +control_wam_debug gnu +cpld_control_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_debug_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 9b46496ea4..982828af23 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -116,6 +116,8 @@ export WW3_RSTFLDS="ice itstep" #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=2 +export FSICL=99999 +export PBL_TAPER=0,0,0,0.1,0.2,0.4,0.6 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 8fd6463d97..865806a036 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -119,6 +119,9 @@ export WW3_RSTFLDS="ice itstep" export PROGSIGMA=.true. export IOPT_DIAG=2 +export FSICL=99999 +export PBL_TAPER=0,0,0,0.1,0.2,0.4,0.6 + #IAU export CHOUR=12 export IAU_OFFSET=6 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index e87ccc71f6..de0dfc0d1f 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -90,6 +90,9 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export PROGSIGMA=.true. export IOPT_DIAG=2 +export FSICL=99999 +export PBL_TAPER=0,0,0,0.1,0.2,0.4,0.6 + export WW3_DOMAIN=global_270k export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 6cfe9a4c5f..302642aa72 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -123,6 +123,9 @@ export WW3_RSTFLDS="ice itstep" export PROGSIGMA=.true. export IOPT_DIAG=2 +export FSICL=99999 +export PBL_TAPER=0,0,0,0.1,0.2,0.4,0.6 + export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 6614ae602c..e841095e10 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -122,6 +122,9 @@ export WW3_RSTFLDS="ice itstep" export PROGSIGMA=.true. export IOPT_DIAG=2 +export FSICL=99999 +export PBL_TAPER=0,0,0,0.1,0.2,0.4,0.6 + export K_SPLIT=4 export N_SPLIT=5 From 437cf9742f852fd7639f71cbe3b1b153ada96203 Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:36:40 -0400 Subject: [PATCH 33/39] ZStd with Netcdf; Modified tests to compare netcdf parallel output of WW3. Bring in several bug fixes affecting netcdf field output. (#2826) (#2444) * UFSWM - Add ZStd library and enable netcdf support for it. * * WW3 - This branch of WW3 fixes several bugs in parallel netcdf output from WW3. The tests in ufs-weather-model are modified to test the WW3 netcdf output fields rather than WW3 binary output. --- WW3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1 + 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 | 566 +++++------ tests/logs/RegressionTests_gaeac6.log | 586 ++++++------ tests/logs/RegressionTests_hera.log | 824 ++++++++-------- tests/logs/RegressionTests_hercules.log | 794 ++++++++-------- tests/logs/RegressionTests_orion.log | 616 ++++++------ tests/logs/RegressionTests_ursa.log | 883 ++++++++++-------- tests/logs/RegressionTests_wcoss2.log | 580 +++++++----- tests/parm/model_configure_atmaq.IN | 1 + tests/parm/model_configure_fire.IN | 1 + tests/parm/model_configure_hafs.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/test_changes.list | 95 -- tests/tests/control_c768 | 2 +- tests/tests/control_debug_p8 | 4 +- tests/tests/control_p8 | 7 +- tests/tests/control_p8.v2.sfc | 5 +- tests/tests/control_restart_p8 | 3 + tests/tests/control_restart_p8_atmlnd | 1 + tests/tests/control_wam | 6 +- tests/tests/control_wam_debug | 4 +- tests/tests/control_wrtGauss_netcdf_parallel | 2 +- .../control_wrtGauss_netcdf_parallel_debug | 2 +- tests/tests/conus13km_2threads | 9 +- tests/tests/conus13km_control | 4 +- tests/tests/conus13km_decomp | 5 +- tests/tests/conus13km_restart | 5 +- tests/tests/cpld_control_pdlib_p8 | 5 +- tests/tests/cpld_debug_pdlib_p8 | 5 +- tests/tests/cpld_mpi_pdlib_p8 | 5 +- tests/tests/cpld_regional_atm_fbh | 1 - tests/tests/cpld_restart_pdlib_p8 | 5 +- tests/tests/dependency_unmet | 4 +- tests/tests/fail_to_run | 4 +- tests/tests/gnv1_nested | 2 +- tests/tests/hafs_global_1nest_atm | 2 +- tests/tests/hafs_global_multiple_4nests_atm | 2 +- .../hafs_global_storm_following_1nest_atm | 2 +- tests/tests/hafs_regional_1nest_atm | 2 +- tests/tests/hafs_regional_atm | 2 +- tests/tests/hafs_regional_atm_ocn | 2 +- tests/tests/hafs_regional_atm_ocn_wav | 2 +- tests/tests/hafs_regional_atm_thompson_gfdlsf | 2 +- tests/tests/hafs_regional_atm_wav | 2 +- tests/tests/hafs_regional_docn | 2 +- tests/tests/hafs_regional_docn_oisst | 2 +- .../hafs_regional_specified_moving_1nest_atm | 2 +- .../hafs_regional_storm_following_1nest_atm | 2 +- ...afs_regional_storm_following_1nest_atm_ocn | 2 +- ...gional_storm_following_1nest_atm_ocn_debug | 2 +- ...regional_storm_following_1nest_atm_ocn_wav | 2 +- ...l_storm_following_1nest_atm_ocn_wav_inline | 2 +- ...nal_storm_following_1nest_atm_ocn_wav_mom6 | 2 +- .../tests/hafs_regional_telescopic_2nests_atm | 2 +- tests/tests/regional_control | 10 +- tests/tests/regional_debug | 17 +- tests/tests/regional_netcdf_parallel | 2 +- tests/tests/regional_restart | 6 +- tests/tests/rrfs_v1beta | 4 +- 66 files changed, 2633 insertions(+), 2592 deletions(-) diff --git a/WW3 b/WW3 index 2a9663769a..91c20381ff 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 2a9663769a97c351ffdff4648e35f9f5b9319fd8 +Subproject commit 91c20381ffe0357001a6626b3af1d37354b77cc8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 0b713ff5c4..8ad7ad09af 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20250926 +export BL_DATE=20250930 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bc5a0199f4..2b89d8fb60 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -2098,6 +2098,7 @@ export_hafs_regional () export FILENAME_BASE="'atm' 'sfc'" export OUTPUT_GRID="'regional_latlon'" export OUTPUT_FILE="'netcdf'" + export ZSTANDARD_LEVEL=0 export IDEFLATE=0 export QUANTIZE_NSD=0 export CEN_LON=-62.0 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index a4955cd339..2235bb7e16 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Sep 26 17:33:20 UTC 2025 +Wed Oct 1 05:46:02 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_3105650/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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.238268 - 0: The maximum resident set size (KB) = 1567616 + 0: The total amount of wall time = 252.032484 + 0: The maximum resident set size (KB) = 1557812 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_3105650/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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 = 883.979371 - 0: The maximum resident set size (KB) = 1539928 + 0: The total amount of wall time = 894.009716 + 0: The maximum resident set size (KB) = 1533112 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_3105650/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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 = 229.449231 - 0: The maximum resident set size (KB) = 1537776 + 0: The total amount of wall time = 228.419745 + 0: The maximum resident set size (KB) = 1552196 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_3105650/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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 = 225.564772 - 0: The maximum resident set size (KB) = 1545868 + 0: The total amount of wall time = 228.129983 + 0: The maximum resident set size (KB) = 1530176 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_3105650/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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.686440 - 0: The maximum resident set size (KB) = 1545180 + 0: The total amount of wall time = 228.328580 + 0: The maximum resident set size (KB) = 1527608 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_3105650/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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 = 227.696146 - 0: The maximum resident set size (KB) = 1520100 + 0: The total amount of wall time = 227.326396 + 0: The maximum resident set size (KB) = 1528520 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_3105650/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_869041/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 = 225.980725 - 0: The maximum resident set size (KB) = 1525128 + 0: The total amount of wall time = 227.850498 + 0: The maximum resident set size (KB) = 1530792 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 26 18:38:46 UTC 2025 -Elapsed time: 01h:05m:26s. Have a nice day! +Wed Oct 1 06:50:29 UTC 2025 +Elapsed time: 01h:04m:35s. 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 6eb446548d..254bf613a0 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Sep 26 16:08:02 UTC 2025 +Wed Oct 1 04:21:25 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_1650304/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3687544/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 = 2303.412957 - 0: The maximum resident set size (KB) = 1638636 + 0: The total amount of wall time = 2315.506476 + 0: The maximum resident set size (KB) = 1647808 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_1650304/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3687544/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 = 591.103054 - 0: The maximum resident set size (KB) = 1651416 + 0: The total amount of wall time = 585.879110 + 0: The maximum resident set size (KB) = 1642544 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_1650304/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3687544/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 = 577.610941 - 0: The maximum resident set size (KB) = 1651444 + 0: The total amount of wall time = 581.720080 + 0: The maximum resident set size (KB) = 1643460 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 26 17:33:20 UTC 2025 -Elapsed time: 01h:25m:18s. Have a nice day! +Wed Oct 1 05:45:46 UTC 2025 +Elapsed time: 01h:24m:22s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index a051531626..ba7f84b92c 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Sep 26 15:14:59 UTC 2025 +Wed Oct 1 03:27:31 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_976059/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2966052/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 = 619.576254 - 0: The maximum resident set size (KB) = 885380 + 0: The total amount of wall time = 607.253608 + 0: The maximum resident set size (KB) = 902116 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_976059/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2966052/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 = 495.569593 - 0: The maximum resident set size (KB) = 854412 + 0: The total amount of wall time = 492.265676 + 0: The maximum resident set size (KB) = 865680 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_976059/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2966052/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 = 490.978149 - 0: The maximum resident set size (KB) = 841936 + 0: The total amount of wall time = 490.937094 + 0: The maximum resident set size (KB) = 863660 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_976059/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2966052/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 = 493.580164 - 0: The maximum resident set size (KB) = 876664 + 0: The total amount of wall time = 488.797432 + 0: The maximum resident set size (KB) = 852532 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 26 16:08:02 UTC 2025 -Elapsed time: 00h:53m:04s. Have a nice day! +Wed Oct 1 04:21:24 UTC 2025 +Elapsed time: 00h:53m:54s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 73f7a30deb..0a9fd8931e 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: -da282905810dba20995a517818996e4ba66d8f33 +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (remotes/origin/HEAD) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,292 +40,292 @@ 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-20250926 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2678762 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_284160 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:27, 12:19] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:14, 06:24](3330 MB) -PASS -- TEST 'cpld_control_gefs_intel' [30:56, 16:10](4117 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [32:17, 07:32](3923 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:39, 13:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:24, 15:01](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:33, 16:30](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 07:28](1072 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:17, 07:30](1933 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:29, 17:27](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:39, 13:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:37, 15:19](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:33, 04:58] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:01, 20:07](1943 MB) - -PASS -- COMPILE 's2swa_intel' [24:40, 12:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [27:42, 08:11](3364 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:03, 08:11](3368 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:24, 04:44](3246 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:40, 08:06](3385 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:25, 04:39](3268 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:13, 07:29](3587 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:54, 07:58](3364 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:39, 06:43](3310 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:00, 08:14](3364 MB) - -PASS -- COMPILE 's2swal_intel' [24:40, 12:00] ( 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [28:00, 08:12](3365 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:26, 04:49](3248 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:43, 08:06](3335 MB) - -PASS -- COMPILE 's2sw_intel' [24:40, 11:09] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:01, 04:43](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:39, 07:01](1972 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:37, 10:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:51, 04:54](1976 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:45, 16:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [30:24, 07:57](3362 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:40, 12:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:22, 14:59](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 07:21](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:21, 17:27](1896 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:50, 05:59](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:49, 01:57](2895 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:07, 01:13](2308 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:14, 01:12](2110 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:13, 01:01](2110 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:44, 00:44](1458 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:13, 01:19](2107 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:12, 00:52](2109 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:44, 00:42](1460 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:12, 00:46](2038 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:12, 00:52](2042 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:46, 00:43](1394 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:41] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 23:50](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:33] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [21:53, 04:01](678 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [21:56, 02:41](1574 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:05, 02:43](1585 MB) -PASS -- TEST 'control_latlon_intel' [22:53, 02:48](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:09, 02:45](1583 MB) -PASS -- TEST 'control_c48_intel' [09:45, 06:33](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:46, 06:08](721 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:47, 06:54](1596 MB) -PASS -- TEST 'control_c192_intel' [24:08, 07:32](1703 MB) -PASS -- TEST 'control_c384_intel' [42:36, 08:46](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [51:13, 09:22](1185 MB) -PASS -- TEST 'control_stochy_intel' [12:41, 01:52](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:35, 01:07](403 MB) -PASS -- TEST 'control_lndp_intel' [12:38, 01:52](636 MB) -PASS -- TEST 'control_iovr4_intel' [12:42, 02:39](633 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [13:05, 03:01](919 MB) -PASS -- TEST 'control_iovr5_intel' [11:43, 02:42](634 MB) -PASS -- TEST 'control_p8_intel' [13:17, 03:01](1866 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:16, 03:14](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:23, 03:01](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:23, 03:07](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:39, 03:06](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:46, 02:22](2436 MB) -PASS -- TEST 'control_restart_p8_intel' [04:29, 01:47](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:32, 03:01](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:12, 01:56](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:35, 03:07](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:09, 02:51](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:04, 05:12](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:16, 04:12](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:08, 03:17](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [10:37, 03:38](1867 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [11:20, 04:47](1873 MB) -PASS -- TEST 'regional_control_intel' [07:53, 05:10](876 MB) -PASS -- TEST 'regional_restart_intel' [04:53, 02:49](883 MB) -PASS -- TEST 'regional_decomp_intel' [08:50, 05:25](875 MB) -PASS -- TEST 'regional_2threads_intel' [06:49, 03:13](990 MB) -PASS -- TEST 'regional_noquilt_intel' [07:51, 05:09](1166 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:09](877 MB) -PASS -- TEST 'regional_wofs_intel' [08:52, 07:01](1613 MB) - -PASS -- COMPILE 'rrfs_intel' [10:22, 08:28] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:16, 04:05](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:21, 04:14](1203 MB) -PASS -- TEST 'rap_decomp_intel' [07:24, 04:11](1010 MB) -PASS -- TEST 'rap_2threads_intel' [07:24, 03:41](1088 MB) -PASS -- TEST 'rap_restart_intel' [07:17, 02:21](764 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:29, 04:06](1013 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 04:15](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:18, 02:24](763 MB) -PASS -- TEST 'hrrr_control_intel' [07:52, 03:56](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 04:06](1010 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:26](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:38, 02:12](756 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:14, 07:21](1010 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 09:28](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 09:04](1966 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:41] -PASS -- TEST 'control_csawmg_intel' [09:55, 06:38](958 MB) -PASS -- TEST 'control_ras_intel' [05:32, 03:29](670 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:41] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:11, 12:28](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 07:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:10, 03:03](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [07:53, 04:55](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:45] ( 887 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:37, 02:36](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:43](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:38](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:33, 03:21](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:47](1118 MB) -PASS -- TEST 'control_ras_debug_intel' [06:32, 03:09](832 MB) -PASS -- TEST 'control_diag_debug_intel' [07:41, 03:09](1682 MB) -PASS -- TEST 'control_debug_p8_intel' [08:58, 03:04](1906 MB) -PASS -- TEST 'regional_debug_intel' [23:13, 18:06](937 MB) -PASS -- TEST 'rap_control_debug_intel' [10:39, 05:43](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:41, 05:31](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:38, 05:35](1194 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:39, 05:52](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:38, 05:44](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:44, 06:00](1291 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:38, 05:49](1200 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:36, 05:49](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:37, 05:53](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 05:42](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:42, 05:36](1195 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:37, 05:43](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:40, 09:04](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:38, 05:39](1201 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:38, 05:40](1197 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:35, 09:44](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:28] ( 845 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [22:17, 14:37](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 07:43] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:25, 04:03](1054 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:08, 03:36](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:55, 03:17](889 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:27, 03:07](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:56, 02:58](933 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:55, 03:35](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 02:02](731 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:37, 01:59](725 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:26, 07:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:19, 02:59](1020 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:01, 01:12](1146 MB) -PASS -- TEST 'conus13km_decomp_intel' [09:04, 02:53](1028 MB) -PASS -- TEST 'conus13km_restart_intel' [04:03, 01:51](691 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 07:58] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:59, 04:19](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:31] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:40, 05:33](1079 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:25](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [29:29, 23:50](1105 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [29:26, 23:51](813 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:16, 13:22](1223 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [29:24, 24:19](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:22, 23:49](1170 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:28] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:37, 05:38](1111 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:42] ( 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [16:56, 04:28](705 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [21:15, 04:42](916 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:53, 03:38](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:04, 06:47](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 11:41](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:11, 12:44](813 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:32](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:03, 06:44](469 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:28, 03:08](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:10, 07:44](428 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:03, 03:51](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:10, 03:39](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:29, 04:26](549 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:48, 01:36](403 MB) -PASS -- TEST 'gnv1_nested_intel' [09:21, 03:56](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:00] ( 1481 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:38, 14:14](650 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:26, 09:19] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 07:20](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:40, 07:19](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:26, 09:36] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:53, 05:26](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:26, 08:46] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:48, 06:14](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:47, 06:18](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:37, 16:12](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:26, 09:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:07](1567 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:28, 02:12](1565 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:50](683 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:27, 03:05](683 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 02:56](683 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:16](1565 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:18](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:56](687 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:32, 07:11](1366 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 07:00](702 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:13](1565 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:23](4521 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:28, 05:27](4519 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:25] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:13](1567 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:17, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:49, 01:05](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [12:42, 00:55](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:34, 00:46](437 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:27, 10:30] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:40, 04:02](1912 MB) - -PASS -- COMPILE 'atml_intel' [12:26, 09:20] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [16:27, 03:20](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 02:07](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:19, 04:17] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:28, 05:32](1910 MB) - -PASS -- COMPILE 'atmw_intel' [12:26, 08:37] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:07, 02:13](1885 MB) - -PASS -- COMPILE 'atmaero_intel' [12:26, 08:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:55, 04:37](3240 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:38, 05:04](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:41, 05:18](3129 MB) - -PASS -- COMPILE 'atmaq_intel' [09:23, 07:48] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [27:02, 15:26](2392 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [28:51, 18:19](2454 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 03:37] ( 870 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:10, 40:23](1972 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:51] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:40, 06:32](3330 MB) +PASS -- TEST 'cpld_control_gefs_intel' [58:18, 16:09](4118 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:02, 07:36](3922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:30, 13:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:19, 15:00](1902 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:20, 16:25](1966 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:19, 07:20](1071 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:21, 07:40](1934 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:26, 17:23](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 13:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:29, 15:25](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:07] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 20:12](1942 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:52, 08:10](3364 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:47, 08:02](3362 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:23, 04:31](3246 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:06](3386 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:55, 04:42](3266 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:10, 07:21](3589 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:29, 08:05](3360 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:28, 06:48](3306 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:41, 08:09](3364 MB) + +PASS -- COMPILE 's2swal_intel' [13:26, 12:05] ( 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:53, 08:11](3365 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [20:32, 04:47](3247 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:37, 08:10](3338 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 10:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 04:48](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:57, 07:02](1973 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:39] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 04:53](1973 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:10, 07:56](3361 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 12:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:14, 14:55](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:58, 07:17](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:31, 17:22](1895 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:55, 05:55](2888 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:49, 01:59](2897 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:06, 01:16](2308 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:16, 01:27](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:15, 00:52](2110 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:55, 00:41](1456 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:16, 01:27](2107 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:15, 00:48](2109 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:55, 00:42](1461 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:15, 00:55](2041 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:15, 00:48](2042 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:45, 00:49](1395 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:40] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:32, 24:16](1975 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:39] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:44, 04:10](678 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:46, 02:33](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:50, 02:42](1586 MB) +PASS -- TEST 'control_latlon_intel' [13:41, 02:33](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:50, 02:49](1584 MB) +PASS -- TEST 'control_c48_intel' [11:47, 06:35](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:51, 06:06](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:46, 06:57](1598 MB) +PASS -- TEST 'control_c192_intel' [16:01, 07:27](1703 MB) +PASS -- TEST 'control_c384_intel' [33:30, 08:47](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [43:04, 09:25](1170 MB) +PASS -- TEST 'control_stochy_intel' [09:37, 01:58](638 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:35, 01:22](401 MB) +PASS -- TEST 'control_lndp_intel' [09:36, 02:01](637 MB) +PASS -- TEST 'control_iovr4_intel' [11:41, 02:37](634 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [12:01, 03:05](919 MB) +PASS -- TEST 'control_iovr5_intel' [10:41, 02:44](629 MB) +PASS -- TEST 'control_p8_intel' [12:17, 03:08](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:55, 03:13](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:12, 03:05](1866 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [09:14, 03:06](1879 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:45, 03:16](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:48, 02:17](2435 MB) +PASS -- TEST 'control_restart_p8_intel' [07:15, 01:50](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:33, 03:07](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:50](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:32, 03:00](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:30, 02:40](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:58, 05:04](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 04:11](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:09, 03:08](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [10:39, 03:35](1866 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:19, 04:50](1873 MB) +PASS -- TEST 'regional_control_intel' [08:55, 05:04](877 MB) +PASS -- TEST 'regional_restart_intel' [04:50, 02:57](882 MB) +PASS -- TEST 'regional_decomp_intel' [08:51, 05:25](874 MB) +PASS -- TEST 'regional_2threads_intel' [06:49, 03:25](992 MB) +PASS -- TEST 'regional_noquilt_intel' [07:51, 05:12](1180 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:04](877 MB) +PASS -- TEST 'regional_wofs_intel' [09:53, 06:55](1609 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:25] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [17:26, 04:04](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:19, 04:15](1204 MB) +PASS -- TEST 'rap_decomp_intel' [07:29, 04:11](1010 MB) +PASS -- TEST 'rap_2threads_intel' [06:36, 03:44](1099 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 02:15](765 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:14, 04:13](1014 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 04:13](1011 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:24, 02:19](768 MB) +PASS -- TEST 'hrrr_control_intel' [07:53, 03:52](1008 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:25, 04:00](1010 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:27, 03:37](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:39, 02:15](759 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:09, 07:15](1008 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:42, 09:24](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 09:05](1964 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:47] +PASS -- TEST 'control_csawmg_intel' [08:53, 06:39](962 MB) +PASS -- TEST 'control_ras_intel' [05:31, 03:39](669 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 07:40] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:12, 12:26](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 07:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:14, 03:10](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:52, 04:54](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:20, 04:48] ( 887 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:44, 02:35](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:54, 02:51](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:39, 03:36](822 MB) +PASS -- TEST 'control_lndp_debug_intel' [14:42, 03:14](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:05, 04:52](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [14:42, 03:18](828 MB) +PASS -- TEST 'control_diag_debug_intel' [14:50, 03:18](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [15:05, 03:04](1901 MB) +PASS -- TEST 'regional_debug_intel' [25:14, 18:29](926 MB) +PASS -- TEST 'rap_control_debug_intel' [07:37, 05:39](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:39, 05:34](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:36, 05:40](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 05:50](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:38, 05:42](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:51, 05:57](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:40, 05:50](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:39, 05:55](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:41, 05:41](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 05:42](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:38, 05:38](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:38, 05:46](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:42, 09:04](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:40](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:42, 05:40](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:45, 09:44](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:17, 03:29] ( 845 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [22:20, 14:27](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:30, 04:05](1030 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:10, 03:30](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:33, 03:19](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 03:09](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:57, 03:06](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:52, 03:36](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:11, 02:02](725 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:36, 01:56](725 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:49] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:22, 03:05](1021 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:05, 01:17](1137 MB) +PASS -- TEST 'conus13km_decomp_intel' [08:06, 02:57](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [04:06, 02:01](691 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 07:48] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:59, 04:14](916 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:20, 03:34] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:38, 05:44](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:38, 05:40](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [28:38, 23:47](1103 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:26, 24:03](796 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:10, 13:24](1204 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:20, 24:31](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:26, 23:53](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 03:30] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:40, 05:37](1106 MB) + +PASS -- COMPILE 'hafsw_intel' [12:25, 09:54] ( 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:25, 04:23](710 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [16:12, 04:36](920 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:52, 03:41](1048 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:48, 06:53](759 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:38, 11:51](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:55, 12:58](813 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:08, 05:31](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:39, 06:40](470 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [17:12, 03:00](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:42, 07:49](424 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:56, 03:54](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:02, 03:44](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:20, 04:32](553 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:44, 01:34](405 MB) +PASS -- TEST 'gnv1_nested_intel' [08:39, 03:56](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:03] ( 1481 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:23, 14:11](591 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:27, 09:31] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:28, 07:09](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:31, 07:19](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 09:40] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:47, 05:32](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:29, 08:49] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:26, 06:22](776 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:23, 06:25](733 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:37, 16:13](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [19:34, 09:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 03:17](1567 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 02:14](1567 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:59](685 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 03:03](683 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:56](687 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:13](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 03:09](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:54](686 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:35, 07:14](1369 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:27, 07:04](704 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:15](1565 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:24](4522 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:29](4520 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [19:34, 09:28] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 03:09](1567 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:48, 01:09](303 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [12:43, 00:52](438 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:34, 00:47](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 10:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:32, 03:57](1907 MB) + +PASS -- COMPILE 'atml_intel' [15:30, 09:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [16:26, 03:20](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:58, 02:02](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:25, 04:22] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:26, 05:37](1914 MB) + +PASS -- COMPILE 'atmw_intel' [13:26, 08:42] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:10, 02:11](1886 MB) + +PASS -- COMPILE 'atmaero_intel' [15:28, 08:14] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:00, 04:27](3241 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:38, 05:02](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:39, 05:13](3128 MB) + +PASS -- COMPILE 'atmaq_intel' [14:27, 07:49] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [25:54, 15:28](2406 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:52, 18:22](2442 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:24, 03:38] ( 870 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [49:11, 40:27](1971 MB) SYNOPSIS: -Starting Date/Time: 20250929 15:36:34 -Ending Date/Time: 20250929 18:15:39 -Total Time: 02h:39m:35s +Starting Date/Time: 20250930 19:10:20 +Ending Date/Time: 20250930 21:47:51 +Total Time: 02h:38m:02s Compiles Completed: 38/38 Tests Completed: 199/199 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 575387a330..90b6ff4ab6 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: -d4eeb023bef9a3a10e1323812c7089df427d2ff7 +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,307 +40,307 @@ 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-20250926 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3892237 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_518396 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:21] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:29, 04:47](2021 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:34] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:40, 03:58](2012 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:43] ( 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:38, 09:57](1905 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:34, 11:01](1934 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:29, 04:54](1070 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:32, 04:56](1916 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 11:32](1895 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:27] ( 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:36, 22:47](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:38, 11:08](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:35, 04:55](1065 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:32, 04:57](1928 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:37, 11:48](1881 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:41] ( 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:28, 10:08](1912 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:50] ( 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:23, 10:19](1905 MB) PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:29] ( 1554 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:30, 13:24](1931 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:31] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:30, 05:32](2072 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:36, 05:00](2050 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:27, 02:45](1599 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:30, 05:04](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:28, 02:46](1454 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:28, 06:48](2215 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 05:42](2055 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:28, 04:00](2012 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:28, 04:58](2053 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:50, 05:28](2394 MB) - -PASS -- COMPILE 's2swal_intel' [10:11, 08:33] ( 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [15:30, 05:02](2072 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:33, 02:44](1594 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 06:00](1923 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:40] ( 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:24, 02:57](1942 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:31](1845 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:50] ( 1444 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:32, 08:08](2085 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:40] ( 1444 warnings 1158 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:29, 03:50](1953 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:24, 04:15](1976 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:31] ( 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:30, 04:51](2053 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:12, 13:33] ( 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:32, 10:07](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:27, 04:56](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:28, 11:46](1909 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:21, 04:15](2861 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:22, 01:16](2872 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:21, 00:46](2269 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:18, 00:45](2086 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:17, 00:25](2091 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:17, 00:19](1433 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:17, 00:45](2087 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:18, 00:24](2083 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:18, 00:19](1435 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:18, 00:26](2018 MB) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:34, 12:37](1923 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:40] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:43, 05:00](2053 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:43, 05:00](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:29, 02:42](1601 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:33, 05:02](2086 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:27, 02:45](1463 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:36, 05:56](2228 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:29, 04:54](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:31, 04:01](2004 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:43, 05:03](2060 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:18, 05:30](2385 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:36] ( 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:43, 05:03](2062 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:34, 03:11](1587 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:35, 05:05](1907 MB) + +PASS -- COMPILE 's2sw_intel' [09:10, 07:57] ( 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:30, 02:58](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:33, 04:29](1841 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:34] ( 1444 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:36, 08:25](2076 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:31] ( 1444 warnings 1158 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:33, 03:45](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:32, 03:09](1971 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:10, 09:32] ( 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:35, 04:52](2056 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:10, 12:29] ( 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:31, 10:02](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:31, 04:57](1088 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:26, 11:41](1903 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:25, 04:15](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:24, 01:17](2863 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:22, 00:46](2281 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:18, 00:44](2091 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:19, 02:12](2084 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:17, 00:20](1434 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:17, 00:44](2094 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:19, 00:25](2082 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:17, 00:19](1441 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:17, 00:27](2024 MB) PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:18, 00:20](2020 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:17, 00:16](1371 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:14] ( 1554 warnings 1896 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:28, 16:05](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:22] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:15, 02:32](528 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 01:36](1417 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 01:42](1427 MB) -PASS -- TEST 'control_latlon_intel' [03:14, 01:40](1428 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 01:41](1424 MB) -PASS -- TEST 'control_c48_intel' [06:19, 04:39](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:18](690 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:18, 04:47](1571 MB) -PASS -- TEST 'control_c192_intel' [06:21, 04:50](1685 MB) -PASS -- TEST 'control_c384_intel' [11:32, 09:49](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [13:04, 10:17](1182 MB) -PASS -- TEST 'control_stochy_intel' [03:15, 01:12](477 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:42](283 MB) -PASS -- TEST 'control_lndp_intel' [03:15, 01:08](478 MB) -PASS -- TEST 'control_iovr4_intel' [03:17, 01:42](478 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:17, 02:01](774 MB) -PASS -- TEST 'control_iovr5_intel' [03:15, 01:45](477 MB) -PASS -- TEST 'control_p8_intel' [03:23, 01:54](1721 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:30, 02:03](1708 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:24, 01:55](1715 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:25, 01:55](1736 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:27, 02:01](1742 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:26, 01:28](2437 MB) -PASS -- TEST 'control_restart_p8_intel' [03:23, 01:10](860 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:22, 01:58](1711 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:23, 01:07](869 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:24, 01:57](1721 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:10](1798 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:20, 03:15](1716 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:37](1776 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:27, 02:00](1723 MB) -PASS -- TEST 'merra2_thompson_intel' [04:22, 02:17](1721 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:18, 03:55](1723 MB) -PASS -- TEST 'regional_control_intel' [05:19, 03:16](858 MB) -PASS -- TEST 'regional_restart_intel' [03:17, 01:47](883 MB) -PASS -- TEST 'regional_decomp_intel' [05:18, 03:28](862 MB) -PASS -- TEST 'regional_2threads_intel' [04:19, 02:34](999 MB) -PASS -- TEST 'regional_noquilt_intel' [05:18, 03:16](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:17](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:18](861 MB) -PASS -- TEST 'regional_wofs_intel' [06:21, 04:17](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [07:12, 05:47] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:19, 02:40](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:29, 02:42](1206 MB) -PASS -- TEST 'rap_decomp_intel' [05:20, 02:44](860 MB) -PASS -- TEST 'rap_2threads_intel' [05:22, 03:07](944 MB) -PASS -- TEST 'rap_restart_intel' [03:19, 01:27](729 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:19, 02:39](862 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:19, 02:45](866 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 01:26](728 MB) -PASS -- TEST 'hrrr_control_intel' [04:21, 02:34](855 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:35](859 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:20, 02:56](930 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:23](691 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:24, 04:37](857 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:18, 05:53](1813 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:41](1803 MB) - -PASS -- COMPILE 'csawmg_intel' [07:12, 05:22] -PASS -- TEST 'control_csawmg_intel' [06:19, 04:09](816 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:11](513 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:19] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:24, 07:32](1500 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 05:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:25, 01:54](1713 MB) -PASS -- TEST 'regional_control_faster_intel' [05:19, 03:09](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:25] ( 902 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:21, 01:31](1446 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:22, 01:36](1449 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:17, 02:04](651 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:18, 01:53](650 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:20, 02:51](962 MB) -PASS -- TEST 'control_ras_debug_intel' [07:17, 01:55](654 MB) -PASS -- TEST 'control_diag_debug_intel' [07:20, 01:49](1512 MB) -PASS -- TEST 'control_debug_p8_intel' [08:21, 01:49](1744 MB) -PASS -- TEST 'regional_debug_intel' [17:21, 10:56](895 MB) -PASS -- TEST 'rap_control_debug_intel' [09:17, 03:29](1043 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:17, 03:22](1033 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:18, 03:21](1041 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:15, 03:21](1037 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 03:24](1042 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:31](1123 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:29](1044 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:24](1040 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:22](1040 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:21](1035 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:17](1038 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:27](1042 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:23](1033 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 03:22](1037 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:25](1033 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:24, 05:46](1040 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:02] ( 859 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:19, 08:40](1527 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:32](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:16](735 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:11](731 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:19, 02:40](797 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:34](786 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:18](736 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:19, 01:14](629 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:12](617 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 06:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:27, 01:51](1023 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:54](1030 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:19, 01:51](1021 MB) -PASS -- TEST 'conus13km_restart_intel' [03:18, 01:04](898 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:25, 02:47](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:04] ( 793 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:17](917 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:11](910 MB) -PASS -- TEST 'conus13km_debug_intel' [15:26, 13:46](1065 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:25, 13:46](761 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:21, 12:43](1070 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:20, 14:01](1064 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 13:59](1126 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:00] ( 793 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:14](952 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:00] ( 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:45](832 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:47, 03:49](1045 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:19](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:50, 04:44](898 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:45, 07:46](936 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:54, 08:14](968 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:42, 03:23](452 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:50, 04:27](467 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:28, 01:43](383 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:17, 04:40](414 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:31, 02:29](487 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 02:18](485 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:33, 02:49](563 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:56](408 MB) -PASS -- TEST 'gnv1_nested_intel' [05:50, 02:37](1694 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:20] ( 1499 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:30, 08:05](567 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:11, 08:36] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:36, 04:36](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:36, 04:38](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:52] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:54, 03:26](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:40] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:44, 04:20](886 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:45, 04:23](863 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:33, 10:56](882 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:11] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:04](1546 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:22](1553 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:52](673 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 01:53](671 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 01:53](675 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:02](1552 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:03](1552 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 01:50](667 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 04:51](1358 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:43](704 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:04](1547 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:47](4511 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:48](4507 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:05](1551 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:13] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:03](1555 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 00:57](303 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:39](431 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:28](432 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:11, 05:52] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:29, 02:24](1784 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:39] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 03:10](1768 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:29, 02:25](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 01:25](1015 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 02:48] ( 907 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:27, 03:21](1883 MB) - -PASS -- COMPILE 'atmw_intel' [09:11, 07:36] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:19](1738 MB) - -PASS -- COMPILE 'atmaero_intel' [07:11, 05:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:26, 02:41](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 03:08](1568 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:14](1595 MB) - -PASS -- COMPILE 'atmaq_intel' [07:11, 05:30] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [15:53, 12:45](2967 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:42, 14:34](2969 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:06] ( 884 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:42, 26:00](2980 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:00](786 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:17, 00:17](1374 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:17] ( 1554 warnings 1896 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:33, 16:04](1951 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:22] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:15, 02:33](525 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:19, 01:36](1421 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 01:42](1433 MB) +PASS -- TEST 'control_latlon_intel' [04:16, 01:40](1426 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:18, 01:43](1427 MB) +PASS -- TEST 'control_c48_intel' [06:18, 04:39](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:19](688 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:17, 04:47](1569 MB) +PASS -- TEST 'control_c192_intel' [07:20, 04:50](1689 MB) +PASS -- TEST 'control_c384_intel' [11:33, 09:45](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [13:03, 10:19](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:14, 01:12](483 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:14, 00:42](279 MB) +PASS -- TEST 'control_lndp_intel' [03:14, 01:08](487 MB) +PASS -- TEST 'control_iovr4_intel' [06:15, 01:43](478 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:18, 01:59](762 MB) +PASS -- TEST 'control_iovr5_intel' [05:16, 01:42](476 MB) +PASS -- TEST 'control_p8_intel' [05:26, 01:55](1715 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:31, 02:01](1712 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 01:54](1723 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:26, 01:55](1738 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:26, 02:00](1744 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:26, 01:32](2422 MB) +PASS -- TEST 'control_restart_p8_intel' [03:21, 01:12](869 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:20, 01:56](1716 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:08](874 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:19, 01:57](1710 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:19, 02:10](1790 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:16](1728 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:23, 02:40](1788 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:24, 02:03](1720 MB) +PASS -- TEST 'merra2_thompson_intel' [04:24, 02:15](1714 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:22, 03:55](1717 MB) +PASS -- TEST 'regional_control_intel' [05:18, 03:15](856 MB) +PASS -- TEST 'regional_restart_intel' [04:16, 01:48](879 MB) +PASS -- TEST 'regional_decomp_intel' [05:16, 03:29](857 MB) +PASS -- TEST 'regional_2threads_intel' [04:19, 02:33](999 MB) +PASS -- TEST 'regional_noquilt_intel' [05:18, 03:13](1163 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:19, 03:18](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:16, 03:18](857 MB) +PASS -- TEST 'regional_wofs_intel' [06:18, 04:15](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 05:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:24, 02:39](859 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:45](1211 MB) +PASS -- TEST 'rap_decomp_intel' [04:20, 02:44](864 MB) +PASS -- TEST 'rap_2threads_intel' [05:22, 03:05](936 MB) +PASS -- TEST 'rap_restart_intel' [03:21, 01:25](729 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:25, 02:44](865 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:25, 02:44](865 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:23, 01:25](722 MB) +PASS -- TEST 'hrrr_control_intel' [04:24, 02:31](861 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:37](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:20, 02:57](931 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](687 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:24, 04:40](861 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:16, 06:01](1810 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:52](1798 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:18] +PASS -- TEST 'control_csawmg_intel' [06:19, 04:10](814 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:17](512 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:24, 07:33](1499 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:24, 01:56](1711 MB) +PASS -- TEST 'regional_control_faster_intel' [05:17, 03:11](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:21] ( 902 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:20, 01:34](1445 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:20, 01:36](1453 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:17, 02:06](649 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:17, 01:55](652 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:20, 02:53](965 MB) +PASS -- TEST 'control_ras_debug_intel' [12:17, 01:56](660 MB) +PASS -- TEST 'control_diag_debug_intel' [12:19, 01:56](1512 MB) +PASS -- TEST 'control_debug_p8_intel' [13:21, 01:53](1748 MB) +PASS -- TEST 'regional_debug_intel' [22:20, 11:16](895 MB) +PASS -- TEST 'rap_control_debug_intel' [14:17, 03:25](1046 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:17, 03:21](1032 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:18, 03:27](1035 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:15, 03:22](1037 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:26](1035 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:36](1123 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:30](1043 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:26](1040 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:25](1043 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:21](1047 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:19](1037 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:23](1032 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:16, 05:23](1031 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 03:26](1036 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:28](1036 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:23, 05:43](1039 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:02] ( 859 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:22, 08:52](1527 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:30, 02:36](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:14](737 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:12](740 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:18, 02:40](791 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:35](782 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:19](732 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:19, 01:15](630 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:15, 01:12](618 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:28, 01:54](1025 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:22, 00:56](1022 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:21, 01:54](1032 MB) +PASS -- TEST 'conus13km_restart_intel' [12:19, 01:07](888 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 02:46](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:08] ( 793 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:16](917 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:13](913 MB) +PASS -- TEST 'conus13km_debug_intel' [16:25, 13:53](1064 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:24, 13:49](759 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:20, 12:44](1072 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:21, 14:16](1066 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:21, 13:44](1132 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:06] ( 793 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:21](959 MB) + +PASS -- COMPILE 'hafsw_intel' [09:10, 08:04] ( 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:37, 02:30](832 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:48, 03:46](1046 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:19](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:39, 04:14](905 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:36, 07:09](935 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:40, 07:38](967 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:34, 08:53](457 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:40, 03:52](472 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:27, 01:37](385 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:08, 04:11](427 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:28, 02:22](489 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:32, 02:11](486 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:29, 05:29](555 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:19, 00:52](410 MB) +PASS -- TEST 'gnv1_nested_intel' [13:47, 02:20](1692 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 02:19] ( 1499 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:28, 07:57](565 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:38] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:30, 04:28](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:32, 04:32](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:45] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:53, 03:11](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 08:09] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:35, 03:56](889 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:36, 03:56](857 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:32, 10:53](885 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:11] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:14, 02:03](1552 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:13, 01:23](1557 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:15, 01:53](671 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:15, 01:52](668 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:15, 01:53](672 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:14, 02:03](1555 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:14, 02:03](1549 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 01:52](671 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:29, 04:50](1357 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:26, 04:38](705 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:12, 02:04](1554 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 03:47](4509 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:14, 03:48](4509 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:29] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 04:06](1548 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 05:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:14, 02:03](1553 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:20, 00:53](300 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:18, 00:39](430 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:18, 00:29](433 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:11] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:29, 08:31](1782 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 05:38] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:26, 03:09](1766 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:18] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:29, 02:26](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:21, 01:25](1026 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 02:43] ( 907 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:27, 03:18](1875 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 07:36] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:19](1738 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:26, 02:42](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:25, 03:09](1573 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:13](1600 MB) + +PASS -- COMPILE 'atmaq_intel' [07:10, 05:26] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:54, 12:48](2971 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [17:42, 14:29](2969 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:08] ( 884 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:41, 25:41](2981 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:18, 06:00](787 MB) SYNOPSIS: -Starting Date/Time: 20250926 14:56:48 -Ending Date/Time: 20250926 16:20:19 -Total Time: 01h:23m:56s +Starting Date/Time: 20250930 16:42:39 +Ending Date/Time: 20250930 18:18:56 +Total Time: 01h:36m:42s Compiles Completed: 43/43 Tests Completed: 204/204 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 864009cb0b..7f43af1d28 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: -d4eeb023bef9a3a10e1323812c7089df427d2ff7 +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -14,8 +14,8 @@ 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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -26,422 +26,422 @@ 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-20250926 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3313364 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3595335 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:06] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:04, 11:39](2216 MB) -PASS -- TEST 'cpld_control_gefs_intel' [32:50, 16:03](3041 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [18:01, 05:12](2726 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [28:22, 15:54](3052 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:20] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:49, 19:13](2083 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:02, 20:30](2307 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:01, 07:56](1355 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:12, 08:58](2205 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:51, 23:14](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:12, 17:16] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:38, 19:08](2058 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 04:09] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:49, 21:37](1937 MB) - -PASS -- COMPILE 's2swa_intel' [13:12, 11:42] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:08, 12:51](2237 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:09, 11:53](2267 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:09, 06:17](1884 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:06, 11:56](2309 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:10, 06:24](1880 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:06, 10:32](2342 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:04, 11:50](2262 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:06, 11:35](2067 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:10, 11:37](2280 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:15, 14:46](2667 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:54, 08:56](2823 MB) - -PASS -- COMPILE 's2swal_intel' [14:12, 12:27] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [15:07, 12:24](2125 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:10, 06:18](1737 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 07:26](2259 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 10:48] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:43, 11:50](2114 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:55, 06:20](2196 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:04] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:15](2307 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:01] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 06:34](2132 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:12, 09:56] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:19](2168 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:06] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:09, 11:13](2291 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:15] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:50, 17:25](2106 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:02, 07:59](1375 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 20:10](1941 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:41, 07:49](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:44, 02:24](3076 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:38, 01:27](2521 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:34, 01:15](2259 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:34, 00:44](2261 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:31, 00:37](1585 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:35, 01:16](2258 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:33, 00:44](2256 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:31, 00:33](1585 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:29, 00:44](2183 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:33](2191 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:31](1531 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:09] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 27:36](1983 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:48] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:21](831 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:24](1723 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:35](1733 MB) -PASS -- TEST 'control_latlon_intel' [04:21, 02:29](1730 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:32](1727 MB) -PASS -- TEST 'control_c48_intel' [09:24, 07:15](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:40](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:22, 07:26](1728 MB) -PASS -- TEST 'control_c192_intel' [09:36, 07:41](1923 MB) -PASS -- TEST 'control_c384_intel' [14:35, 08:40](2009 MB) -PASS -- TEST 'control_c384gdas_intel' [13:28, 08:33](1397 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:40](784 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:59](629 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:36](782 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:29](781 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 03:05](1079 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:30](783 MB) -PASS -- TEST 'control_p8_intel' [04:44, 03:00](2004 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:48, 03:11](1999 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:58](1998 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:42, 02:57](2033 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:40, 03:04](2048 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:42, 02:06](2420 MB) -PASS -- TEST 'control_restart_p8_intel' [03:36, 01:42](1257 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:57](2014 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:38, 01:42](1281 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:36, 03:03](2003 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:18](2034 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:35, 05:10](2027 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 04:13](2076 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:09](2031 MB) -PASS -- TEST 'merra2_thompson_intel' [05:39, 03:32](2020 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:32, 04:58](2025 MB) -PASS -- TEST 'regional_control_intel' [07:31, 05:19](1223 MB) -PASS -- TEST 'regional_restart_intel' [04:30, 02:52](1236 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 05:41](1219 MB) -PASS -- TEST 'regional_2threads_intel' [05:30, 04:00](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:31, 05:19](1502 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:14](1210 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:19](1225 MB) -PASS -- TEST 'regional_wofs_intel' [09:30, 07:00](2044 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:51] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [05:36, 04:07](1182 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 04:11](1329 MB) -PASS -- TEST 'rap_decomp_intel' [06:32, 04:19](1172 MB) -PASS -- TEST 'rap_2threads_intel' [06:29, 04:39](1200 MB) -PASS -- TEST 'rap_restart_intel' [04:36, 02:14](1175 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:32, 04:10](1179 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:29, 04:18](1168 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:34, 02:13](1158 MB) -PASS -- TEST 'hrrr_control_intel' [05:37, 03:56](1178 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:05](1152 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:32, 04:23](1165 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:11](1130 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:36, 07:37](1213 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:22, 09:28](2124 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 09:10](2181 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:35] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:35, 06:12](1158 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:22](862 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:32] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 11:24](1797 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:40] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:42, 02:49](2008 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:47](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:23] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:26, 02:09](1739 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:32, 02:16](1751 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:06](955 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:47](951 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:10](1262 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:45](960 MB) -PASS -- TEST 'control_diag_debug_intel' [04:33, 02:46](1812 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 02:41](2037 MB) -PASS -- TEST 'regional_debug_intel' [19:33, 17:37](1219 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:49](1332 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:50](1340 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:53](1335 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:52](1334 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:53](1339 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:21](1429 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:05](1333 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1351 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:05](1335 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:53](1331 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:50](1335 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:52](1336 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:06](1333 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 04:48](1351 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:21, 04:56](1332 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:38](1352 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 02:54] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:40, 13:18](1818 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:27] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:04](1200 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:30, 03:38](1108 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:28, 03:29](1098 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:31, 03:59](1047 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:50](1018 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:34](1028 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:55](1066 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:51](1049 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:34] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:54](1452 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:16](1290 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:36, 02:55](1495 MB) -PASS -- TEST 'conus13km_restart_intel' [03:40, 01:38](1331 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:37] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:31, 04:14](1121 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:56] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:46](1218 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:53](1224 MB) -PASS -- TEST 'conus13km_debug_intel' [24:39, 22:58](1508 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:42, 22:57](1174 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:39, 19:46](1342 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:39, 22:50](1513 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:41, 22:57](1569 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:57] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:01](1280 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:29] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:03](911 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:16, 05:13](1118 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:31, 03:36](1174 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 06:51](936 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:15, 29:02](959 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:27](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:49](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:44](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:05](431 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 03:38](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:28](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 03:54](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:12](403 MB) -PASS -- TEST 'gnv1_nested_intel' [06:19, 04:04](1868 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:20] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:50](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:44] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:48, 15:06](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:58, 15:09](678 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:28] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:26, 10:35](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:57] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:34](936 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:39](923 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:50, 16:16](1307 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:18] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 03:02](2011 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 02:03](1953 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:46](1260 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:50](1264 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:53](1271 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:56](2007 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](2009 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:47](1264 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:37, 07:01](1778 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:18, 06:54](1159 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](2006 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:10](4965 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:59](4968 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:43] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:51](1910 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:33] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](2008 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:20] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 00:54](248 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:35](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:24](307 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:14] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:32](635 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:19](505 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:23] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:50, 03:42](2080 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:57] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:41](2113 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:37] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:14](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 01:58](1101 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 03:59] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:44, 04:58](1883 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:00] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:43, 01:56](2022 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:51] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:46, 04:11](2116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:37, 04:54](1894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 05:00](1892 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:33] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [18:38, 15:02](2927 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [21:30, 18:45](2928 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:00] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:19, 40:02](2941 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:30] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:24, 11:26](1186 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:12, 04:01] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:28, 04:09](1120 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [05:12, 03:52] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:31, 04:44](1128 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 03:58] -PASS -- TEST 'control_c48_gnu' [11:23, 09:27](1539 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:51](605 MB) -PASS -- TEST 'control_ras_gnu' [06:19, 04:40](611 MB) -PASS -- TEST 'control_p8_gnu' [06:47, 04:22](1550 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:42, 04:22](1562 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:24](649 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:51] -PASS -- TEST 'rap_control_gnu' [08:32, 05:58](947 MB) -PASS -- TEST 'rap_decomp_gnu' [08:27, 06:06](944 MB) -PASS -- TEST 'rap_2threads_gnu' [09:33, 06:59](1019 MB) -PASS -- TEST 'rap_restart_gnu' [04:31, 03:02](681 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 06:07](948 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:28, 06:00](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:33, 03:02](683 MB) -PASS -- TEST 'hrrr_control_gnu' [07:32, 05:44](953 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:39](939 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:35, 06:34](1010 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:27, 05:43](952 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:56](682 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:57](771 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:51](942 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:39] -PASS -- TEST 'control_csawmg_gnu' [10:29, 08:23](851 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:35] -PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:39](1377 MB) -PASS -- TEST 'regional_debug_gnu' [10:32, 08:24](880 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:31](958 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:28](965 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](968 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:34](965 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:47](1042 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:02](954 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:35](956 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](601 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:37](592 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:40](1554 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:37](961 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:37](964 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:16](971 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:00] -PASS -- TEST 'control_wam_debug_gnu' [08:42, 06:21](1404 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:24] -PASS -- TEST 'control_csawmg_debug_gnu' [04:32, 02:17](834 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:40] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:05](800 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:57](807 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:29, 06:04](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:28, 05:56](846 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:25, 05:11](805 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:44](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:36](660 MB) -PASS -- TEST 'conus13km_control_gnu' [06:51, 04:49](1030 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:44, 02:01](1018 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:42, 04:49](1032 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:42](733 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 05:38](826 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:34] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:29](808 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:29](812 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:40, 10:58](1033 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [13:39, 11:08](772 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [11:38, 09:04](1033 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:39, 11:34](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:38, 10:57](1114 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:34](832 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:47] -PASS -- TEST 'cpld_control_p8_gnu' [13:11, 10:53](1690 MB) - -PASS -- COMPILE 's2s_gnu' [17:11, 15:52] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:00, 09:52](1651 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 02:56] -PASS -- TEST 'cpld_debug_p8_gnu' [09:02, 07:04](1688 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:10] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:50, 17:50](1597 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:31] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:47, 11:03](1556 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:18](1554 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:10] -PASS -- TEST 'control_gfs_mpas_gnu' [02:27, 00:47](6338 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:12, 08:38] ( 402 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:30, 01:29](1172 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:56] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:53, 11:44](2219 MB) +PASS -- TEST 'cpld_control_gefs_intel' [37:36, 16:41](3067 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [20:40, 05:18](2743 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [37:36, 17:02](3068 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:30] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:50, 19:19](2081 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:02, 20:58](2286 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:59, 08:03](1358 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:07, 08:59](2222 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:51, 23:15](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:01] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:43, 19:35](2061 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:31] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:49, 21:45](1937 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:18] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:27, 12:34](2291 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:28, 11:52](2289 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:10, 06:22](1888 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:22, 11:47](2288 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:08, 06:22](1888 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:16, 10:39](2349 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:16, 11:54](2257 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:23, 12:15](2058 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:20, 11:30](2292 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:03, 15:00](2666 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:40, 09:04](2829 MB) + +PASS -- COMPILE 's2swal_intel' [14:11, 12:12] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:29, 12:43](2114 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:12, 06:17](1736 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:14, 07:29](2264 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:50] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:46, 11:21](2107 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 06:20](2187 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:00] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:06, 13:02](2300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 03:55] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:43, 06:38](2131 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:44] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:55, 04:23](2174 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:04] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:02, 11:27](2292 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:12] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:52, 17:01](2126 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:58](1370 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:48, 20:03](1942 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:35, 07:54](3088 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:38, 02:24](3080 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:34, 01:24](2524 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:14](2260 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:31, 00:42](2264 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:29, 00:35](1586 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:35, 01:14](2256 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:35, 00:44](2261 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:30, 00:39](1586 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:32, 00:44](2190 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:32, 00:33](2188 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:29, 00:29](1533 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:04] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 27:53](1992 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 09:51] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:31](828 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:23](1722 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:23, 02:35](1736 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 02:30](1733 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:37](1728 MB) +PASS -- TEST 'control_c48_intel' [09:23, 07:18](1722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:40](853 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:21, 07:30](1725 MB) +PASS -- TEST 'control_c192_intel' [10:35, 07:44](1923 MB) +PASS -- TEST 'control_c384_intel' [14:25, 08:25](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 08:37](1403 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:43](779 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 01:02](629 MB) +PASS -- TEST 'control_lndp_intel' [04:19, 01:37](783 MB) +PASS -- TEST 'control_iovr4_intel' [05:22, 02:31](787 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:32, 03:04](1083 MB) +PASS -- TEST 'control_iovr5_intel' [05:19, 02:31](788 MB) +PASS -- TEST 'control_p8_intel' [05:44, 02:56](2009 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:08](2012 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:40, 02:56](2020 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:41, 02:57](2031 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:41, 03:05](2051 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:41, 02:10](2403 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 01:46](1280 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:59](2016 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:43](1279 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:36, 03:04](2011 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:20](2028 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:31, 05:13](2016 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:41, 04:14](2069 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:38, 03:10](2020 MB) +PASS -- TEST 'merra2_thompson_intel' [05:36, 03:34](2022 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [07:30, 05:16](2030 MB) +PASS -- TEST 'regional_control_intel' [07:30, 05:20](1223 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 02:53](1238 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:36](1216 MB) +PASS -- TEST 'regional_2threads_intel' [06:31, 04:00](1076 MB) +PASS -- TEST 'regional_noquilt_intel' [07:32, 05:19](1500 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 05:18](1214 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 05:16](1222 MB) +PASS -- TEST 'regional_wofs_intel' [08:29, 06:41](2044 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 09:00] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [06:36, 04:11](1177 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 04:11](1328 MB) +PASS -- TEST 'rap_decomp_intel' [06:32, 04:18](1168 MB) +PASS -- TEST 'rap_2threads_intel' [06:30, 04:38](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:37, 02:14](1185 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:31, 04:09](1180 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:28, 04:19](1164 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:33, 02:13](1173 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 04:03](1168 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:08](1152 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:25](1166 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:21, 02:08](1140 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:35, 07:41](1210 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:27](2115 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:19](2185 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:30] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:39, 06:09](1165 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:20](870 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:21] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [13:47, 11:33](1795 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:39] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:50](2013 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:51](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:12] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:29, 02:09](1745 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:31, 02:17](1741 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:24, 03:03](955 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:24, 02:50](958 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:36, 04:17](1265 MB) +PASS -- TEST 'control_ras_debug_intel' [08:24, 02:46](958 MB) +PASS -- TEST 'control_diag_debug_intel' [09:34, 02:49](1809 MB) +PASS -- TEST 'control_debug_p8_intel' [10:38, 02:40](2049 MB) +PASS -- TEST 'regional_debug_intel' [25:38, 17:29](1225 MB) +PASS -- TEST 'rap_control_debug_intel' [11:21, 04:51](1337 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:41](1343 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:59](1332 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:00](1330 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 04:58](1334 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:10](1422 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:03](1352 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 05:01](1346 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:20, 04:56](1342 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:22, 04:48](1332 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:20, 04:52](1331 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 05:00](1337 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:22, 07:55](1334 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:55](1342 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:21, 04:54](1341 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:30](1351 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 02:52] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:15](1819 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 08:30] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:58](1185 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:30, 03:35](1118 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 03:25](1096 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:30, 03:59](1029 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 03:50](1026 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:36](1023 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:57](1068 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 01:50](1041 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 08:31] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:58](1462 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:43, 01:19](1294 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:45, 03:02](1489 MB) +PASS -- TEST 'conus13km_restart_intel' [03:44, 01:44](1333 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 08:46] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:33, 04:15](1124 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:12, 02:52] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:51](1215 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:20, 04:44](1222 MB) +PASS -- TEST 'conus13km_debug_intel' [25:39, 23:00](1503 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:39, 23:00](1195 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:33, 19:42](1330 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:34, 22:45](1532 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:36, 22:21](1562 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 02:51] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 04:54](1282 MB) + +PASS -- COMPILE 'hafsw_intel' [15:13, 10:33] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:56, 03:43](916 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:17, 05:14](1121 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 03:37](1171 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 06:11](943 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:56, 29:24](968 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:44, 05:18](496 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:58, 05:59](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:33](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:31, 06:31](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:38, 03:38](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:41, 03:24](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:40, 03:47](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:11](401 MB) +PASS -- TEST 'gnv1_nested_intel' [06:11, 03:38](1860 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:12, 03:19] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:20](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:12, 10:29] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:42, 15:10](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:46, 15:13](670 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 11:11] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:36, 10:40](680 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 11:09] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:56, 06:02](932 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:56, 05:57](918 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:23](1310 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:10] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:02](2004 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:00](1955 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:47](1263 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:49](1274 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:50](1270 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](2010 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:57](2006 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:46](1271 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:08, 07:15](1776 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:07, 07:01](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:00](2003 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:49](4965 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:00](4966 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:49] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 06:56](1913 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:28] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:05](2015 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:08] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:02](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:40](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:24](306 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:13] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:34](638 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:21](513 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:13, 09:17] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:48, 03:41](2099 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 09:01] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:41, 04:44](2102 MB) + +PASS -- COMPILE 'atml_intel' [11:12, 09:41] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:21](1853 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:35, 01:52](1124 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:54] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:43, 04:59](1873 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:23] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 02:01](2028 MB) + +PASS -- COMPILE 'atmaero_intel' [10:12, 08:53] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:46, 04:09](2111 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:36, 04:53](1896 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 05:02](1893 MB) + +PASS -- COMPILE 'atmaq_intel' [10:12, 08:30] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [19:39, 15:08](2925 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [22:10, 18:42](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 03:14] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:14, 39:43](2949 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:14] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 12:07](1183 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [05:11, 03:52] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:31, 04:12](1120 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [06:11, 04:10] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:32, 04:45](1130 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:18] +PASS -- TEST 'control_c48_gnu' [11:26, 09:32](1536 MB) +PASS -- TEST 'control_stochy_gnu' [05:19, 02:50](603 MB) +PASS -- TEST 'control_ras_gnu' [07:19, 04:43](609 MB) +PASS -- TEST 'control_p8_gnu' [06:48, 04:24](1529 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:43, 04:21](1551 MB) +PASS -- TEST 'control_flake_gnu' [07:24, 05:32](653 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:19] +PASS -- TEST 'rap_control_gnu' [07:31, 05:51](946 MB) +PASS -- TEST 'rap_decomp_gnu' [07:28, 06:04](947 MB) +PASS -- TEST 'rap_2threads_gnu' [08:31, 06:56](1019 MB) +PASS -- TEST 'rap_restart_gnu' [05:32, 03:09](680 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:32, 05:52](950 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:29, 05:58](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:32, 03:02](686 MB) +PASS -- TEST 'hrrr_control_gnu' [07:31, 05:44](950 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:33, 05:42](934 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:28, 06:34](1016 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:43](950 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 02:58](685 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:57](771 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:35, 10:52](940 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:31] +PASS -- TEST 'control_csawmg_gnu' [10:29, 08:24](852 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:37] +PASS -- TEST 'control_diag_debug_gnu' [03:29, 01:31](1378 MB) +PASS -- TEST 'regional_debug_gnu' [10:33, 08:25](873 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:31](959 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:28](964 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:36](964 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](968 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:41](1045 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 04:02](948 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:28](961 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:28](601 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:37](594 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:38](1545 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:34](959 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:32](960 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:34, 04:16](972 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:32] +PASS -- TEST 'control_wam_debug_gnu' [08:41, 06:26](1403 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:28] +PASS -- TEST 'control_csawmg_debug_gnu' [04:31, 02:20](837 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:29, 05:06](798 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 05:02](804 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:29, 06:05](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:28, 05:54](852 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:25, 05:11](810 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:43](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:36](657 MB) +PASS -- TEST 'conus13km_control_gnu' [06:49, 04:51](1027 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:40, 02:05](1017 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:42, 04:57](1034 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:42, 02:46](721 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:39] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:46](827 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:58] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:27](809 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 02:27](812 MB) +PASS -- TEST 'conus13km_debug_gnu' [13:38, 11:10](1045 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:41, 11:03](773 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:34, 09:01](1033 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:34, 11:23](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:35, 10:54](1114 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:31](832 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:48] +PASS -- TEST 'cpld_control_p8_gnu' [14:11, 11:09](1679 MB) + +PASS -- COMPILE 's2s_gnu' [19:11, 16:12] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:02, 09:52](1639 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 02:51] +PASS -- TEST 'cpld_debug_p8_gnu' [10:00, 06:56](1693 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:47](1607 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:29] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:45, 10:47](1544 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:23] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 03:23](1557 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:22] +PASS -- TEST 'control_gfs_mpas_gnu' [02:27, 00:46](6348 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 08:24] ( 402 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:33, 01:47](1169 MB) SYNOPSIS: -Starting Date/Time: 20250926 19:26:19 -Ending Date/Time: 20250926 21:26:14 -Total Time: 02h:00m:28s +Starting Date/Time: 20250930 20:41:13 +Ending Date/Time: 20250930 22:39:56 +Total Time: 01h:59m:26s Compiles Completed: 64/64 Tests Completed: 277/277 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 20c49f86ed..c802a22c66 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: -746ad7c0a449edef907e3d6656fd750bfa6bd81e +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,407 +40,407 @@ 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-20250926 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3812241 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2250357 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:58] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:59, 08:46](2165 MB) -PASS -- TEST 'cpld_control_gefs_intel' [40:05, 18:21](3140 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [19:31, 04:30](2825 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [31:53, 16:00](3161 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:14] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [42:08, 18:11](2032 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:26, 18:09](2342 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 07:00](1335 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [21:46, 08:56](2204 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:50, 19:37](1929 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:08] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [42:36, 18:24](1985 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:02] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:07, 17:33](1995 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:27] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:13, 09:44](2270 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:09, 12:23](2265 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:05, 04:31](1954 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:00, 09:39](2290 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:09, 06:01](1842 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:56, 10:04](2392 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:03, 09:23](2252 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:55, 10:26](2143 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:08, 09:20](2266 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [39:56, 16:31](2949 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:42, 08:18](2958 MB) - -PASS -- COMPILE 's2swal_intel' [13:11, 11:36] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [21:01, 09:54](2224 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [21:23, 06:24](1930 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [24:54, 07:50](2237 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 10:37] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:51, 08:44](2047 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:55, 07:02](2158 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:22] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:07, 11:33](2289 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:21] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:50, 05:59](2073 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:24] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:49, 04:58](2128 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:07] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [36:09, 09:08](2261 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 16:18] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:51, 15:43](2099 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:05, 06:57](1411 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:40, 16:34](1992 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [12:42, 06:46](3052 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [10:41, 03:41](3040 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [10:43, 02:07](2488 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [08:28, 02:31](2246 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [07:26, 01:12](2247 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [09:30, 01:31](1557 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [08:27, 01:41](2235 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [07:26, 01:27](2240 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [11:37, 01:40](1553 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [07:25, 01:37](2171 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [07:25, 01:32](2167 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [11:35, 01:50](1506 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 03:04] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:13, 23:00](2072 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 09:05] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [24:21, 04:03](727 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:22, 03:01](1615 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:28, 02:15](1623 MB) -PASS -- TEST 'control_latlon_intel' [05:20, 02:14](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:28, 02:13](1623 MB) -PASS -- TEST 'control_c48_intel' [10:24, 06:40](1716 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:01](839 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:26, 06:48](1712 MB) -PASS -- TEST 'control_c192_intel' [17:34, 09:00](1815 MB) -PASS -- TEST 'control_c384_intel' [12:11, 07:37](2042 MB) -PASS -- TEST 'control_c384gdas_intel' [19:15, 08:10](1518 MB) -PASS -- TEST 'control_stochy_intel' [11:20, 01:28](681 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:53](559 MB) -PASS -- TEST 'control_lndp_intel' [10:20, 01:22](677 MB) -PASS -- TEST 'control_iovr4_intel' [11:22, 02:19](676 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [12:31, 03:20](971 MB) -PASS -- TEST 'control_iovr5_intel' [11:25, 02:12](671 MB) -PASS -- TEST 'control_p8_intel' [12:57, 03:11](1908 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 04:06](1911 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:51, 03:34](1912 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [13:49, 03:49](1926 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [14:54, 04:51](1941 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:42, 02:08](2434 MB) -PASS -- TEST 'control_restart_p8_intel' [05:40, 02:07](1168 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:40, 03:10](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:48, 01:29](1217 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:36, 02:47](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:35, 02:59](1990 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:29, 04:31](1909 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 03:43](1977 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:47](1911 MB) -PASS -- TEST 'merra2_thompson_intel' [06:50, 04:09](1920 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:42, 04:33](1920 MB) -PASS -- TEST 'regional_control_intel' [07:27, 04:38](1190 MB) -PASS -- TEST 'regional_restart_intel' [05:25, 02:27](1206 MB) -PASS -- TEST 'regional_decomp_intel' [07:23, 04:45](1190 MB) -PASS -- TEST 'regional_2threads_intel' [06:24, 03:37](1086 MB) -PASS -- TEST 'regional_noquilt_intel' [06:26, 04:34](1497 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:31](1200 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:41](1200 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 05:55](2100 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 08:24] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [26:45, 05:19](1098 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 04:35](1419 MB) -PASS -- TEST 'rap_decomp_intel' [06:35, 03:46](1065 MB) -PASS -- TEST 'rap_2threads_intel' [08:41, 04:22](1155 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 02:01](1072 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:45, 03:39](1099 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:31, 03:51](1051 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 01:59](1085 MB) -PASS -- TEST 'hrrr_control_intel' [06:46, 03:31](1081 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:34, 03:35](1059 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 04:01](1149 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:19, 01:54](1055 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:53, 06:43](1193 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 08:16](2020 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:19, 07:51](2177 MB) - -PASS -- COMPILE 'csawmg_intel' [12:10, 07:44] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:26, 05:29](1069 MB) -PASS -- TEST 'control_ras_intel' [06:18, 04:05](828 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 07:46] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [14:38, 12:22](1688 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 07:48] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:51, 02:20](1912 MB) -PASS -- TEST 'regional_control_faster_intel' [06:26, 04:07](1196 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:40] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:24, 02:05](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [27:28, 02:52](1638 MB) -PASS -- TEST 'control_stochy_debug_intel' [27:20, 02:42](853 MB) -PASS -- TEST 'control_lndp_debug_intel' [27:22, 03:31](855 MB) -PASS -- TEST 'control_csawmg_debug_intel' [29:29, 04:12](1164 MB) -PASS -- TEST 'control_ras_debug_intel' [26:20, 02:27](865 MB) -PASS -- TEST 'control_diag_debug_intel' [26:26, 02:26](1704 MB) -PASS -- TEST 'control_debug_p8_intel' [29:36, 03:26](1944 MB) -PASS -- TEST 'regional_debug_intel' [41:29, 15:57](1159 MB) -PASS -- TEST 'rap_control_debug_intel' [06:18, 04:08](1245 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:57](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:12](1248 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:12](1234 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:11](1237 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:23, 04:14](1324 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:09](1239 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:11, 21:48] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:15, 08:28](2162 MB) +PASS -- TEST 'cpld_control_gefs_intel' [31:14, 16:15](3130 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [23:54, 05:43](2826 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [31:07, 18:22](3158 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [36:12, 34:15] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:17, 18:24](2030 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:36, 19:34](2341 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:35, 07:57](1350 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:47, 08:37](2211 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:09, 18:50](1928 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:19] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:40, 18:11](1987 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:49] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:26, 19:05](1991 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:59] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:30, 09:35](2265 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:27, 10:28](2264 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:10, 05:26](1961 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:18, 09:48](2286 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 05:39](1841 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:18, 10:06](2388 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 10:49](2248 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:21, 08:35](2128 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:29, 09:49](2260 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:24, 16:41](2948 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:43, 07:15](2971 MB) + +PASS -- COMPILE 's2swal_intel' [14:11, 12:36] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [14:30, 10:36](2223 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:22, 05:24](1928 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:26, 11:06](2232 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:42] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:15, 08:55](2049 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:22, 07:41](2171 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:51] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:09, 13:04](2284 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:11, 03:00] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:03, 05:29](2080 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:12] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:05, 04:16](2132 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:25] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:17, 08:48](2271 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:27] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:13, 15:28](2104 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:13, 07:14](1421 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:02, 17:45](2003 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:38, 06:58](3043 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:42, 02:16](3037 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:40, 02:28](2486 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:30, 01:18](2245 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:36](2239 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:25](1554 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 01:14](2235 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 01:07](2242 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:23, 00:24](1556 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:49](2174 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:27, 01:20](2166 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:24, 01:08](1508 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:51] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:14, 24:31](2052 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 16:03] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [04:20, 02:58](719 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:10](1618 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:18](1629 MB) +PASS -- TEST 'control_latlon_intel' [04:16, 02:13](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:16](1623 MB) +PASS -- TEST 'control_c48_intel' [08:26, 06:33](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 06:00](838 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:23, 06:42](1721 MB) +PASS -- TEST 'control_c192_intel' [08:34, 06:49](1819 MB) +PASS -- TEST 'control_c384_intel' [10:25, 07:40](2034 MB) +PASS -- TEST 'control_c384gdas_intel' [12:29, 08:11](1534 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:31](679 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:54](559 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:22](678 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:14](677 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:26, 03:36](975 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:16](676 MB) +PASS -- TEST 'control_p8_intel' [05:00, 02:59](1906 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:55, 03:54](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 04:39](1903 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:49, 04:40](1923 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:00, 03:52](1944 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:49, 02:19](2435 MB) +PASS -- TEST 'control_restart_p8_intel' [04:53, 02:06](1227 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:44](1906 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:50, 02:05](1218 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:38, 05:04](1906 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:44, 03:59](2007 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:30, 05:50](1910 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:17](1971 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1916 MB) +PASS -- TEST 'merra2_thompson_intel' [07:51, 03:51](1911 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [07:45, 04:48](1934 MB) +PASS -- TEST 'regional_control_intel' [10:24, 07:49](1193 MB) +PASS -- TEST 'regional_restart_intel' [05:27, 03:55](1204 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 04:57](1187 MB) +PASS -- TEST 'regional_2threads_intel' [07:22, 04:43](1089 MB) +PASS -- TEST 'regional_noquilt_intel' [07:30, 05:37](1505 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:27, 06:49](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:38](1196 MB) +PASS -- TEST 'regional_wofs_intel' [08:22, 06:06](2081 MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 08:16] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [05:45, 03:40](1110 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:54, 03:28](1452 MB) +PASS -- TEST 'rap_decomp_intel' [05:45, 03:52](1061 MB) +PASS -- TEST 'rap_2threads_intel' [07:52, 04:26](1154 MB) +PASS -- TEST 'rap_restart_intel' [03:45, 02:00](1096 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:45, 03:43](1092 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:45, 03:56](1059 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:53, 02:00](1098 MB) +PASS -- TEST 'hrrr_control_intel' [05:53, 03:21](1092 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:45, 03:46](1059 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 04:10](1157 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 01:56](1058 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:01, 06:40](1198 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 08:17](2018 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 08:01](2193 MB) + +PASS -- COMPILE 'csawmg_intel' [09:10, 07:47] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:31, 06:29](1071 MB) +PASS -- TEST 'control_ras_intel' [04:23, 02:58](859 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 13:44] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [14:35, 12:34](1684 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 07:57] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:54, 03:30](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [06:27, 04:57](1197 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:46] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 01:58](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:04](1639 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:19, 02:50](860 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:22](853 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:16](1161 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:28](861 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:23](1707 MB) +PASS -- TEST 'control_debug_p8_intel' [05:33, 03:09](1932 MB) +PASS -- TEST 'regional_debug_intel' [18:27, 16:36](1155 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:10](1232 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:10](1243 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:08](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 04:19](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:12](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:28](1328 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:15](1244 MB) PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:11](1237 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:08](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:12](1241 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:17, 06:02](1234 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:18, 04:16](1227 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:17, 06:42](1235 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:18, 04:03](1230 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:17, 04:05](1233 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 02:18] ( 859 warnings 394 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 07:23] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 03:12](1309 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 03:02](1044 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 02:56](1032 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 03:45](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:37, 03:34](1067 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:07](985 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:44, 01:41](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:18, 01:37](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 07:49] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:35, 02:26](1519 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:28, 01:07](1325 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:26, 02:24](1523 MB) -PASS -- TEST 'conus13km_restart_intel' [15:34, 02:18](1287 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 07:42] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:49](1113 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:33] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:16, 04:02](1107 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:16, 03:58](1117 MB) -PASS -- TEST 'conus13km_debug_intel' [25:36, 18:35](1560 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:32, 18:23](1165 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:36, 20:30](1383 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [26:26, 19:08](1588 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:27, 18:40](1625 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:23] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:07](1214 MB) - -PASS -- COMPILE 'hafsw_intel' [12:10, 10:36] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:46](1035 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:08, 04:51](1213 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 03:47](1300 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:11, 06:29](1111 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 14:44](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:13, 16:34](1142 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:49, 06:41](600 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:09, 06:10](615 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:39, 02:19](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:44, 06:29](504 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:42, 03:17](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:41, 03:06](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:48, 04:17](664 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:25, 00:59](447 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:05] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:44, 10:48](631 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:10, 17:20] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:51, 17:47](730 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:56, 18:28](832 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 10:41] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:38, 11:47](831 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:10, 10:32] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:08, 05:40](1105 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:04, 07:26](1088 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:44, 16:41](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 05:27] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:15, 02:25](1869 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:33](1813 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:14, 02:16](1115 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:15, 02:17](1113 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:14, 02:13](1124 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:14, 02:25](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:14, 02:24](1868 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:14, 02:12](1113 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:56, 05:55](1710 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 05:40](1194 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:13, 02:35](1872 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:15, 04:38](4836 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:15, 03:50](4829 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 02:42] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:30](1772 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 07:38] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:23](1871 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:44] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:53](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:35](556 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:25](554 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:10, 08:22] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:51, 03:20](2044 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:00] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:16](2058 MB) - -PASS -- COMPILE 'atml_intel' [10:10, 08:36] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:55, 03:28](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 01:50](1169 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:25] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:08](1916 MB) - -PASS -- COMPILE 'atmw_intel' [14:10, 09:54] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:54, 01:42](1941 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 08:00] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:45, 03:42](2016 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:39, 04:09](1792 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 04:19](1824 MB) - -PASS -- COMPILE 'atmaq_intel' [10:10, 08:09] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [16:19, 13:23](2951 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [19:11, 15:58](2942 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:51] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [48:17, 44:40](2957 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:10, 07:49] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:23, 09:29](1088 MB) - -PASS -- COMPILE 'atm_gnu' [08:10, 03:50] -PASS -- TEST 'control_c48_gnu' [10:29, 07:50](1583 MB) -PASS -- TEST 'control_stochy_gnu' [04:19, 02:13](594 MB) -PASS -- TEST 'control_ras_gnu' [05:16, 03:39](595 MB) -PASS -- TEST 'control_p8_gnu' [05:48, 03:22](1546 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:20](1533 MB) -PASS -- TEST 'control_flake_gnu' [06:19, 04:23](636 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 03:51] -PASS -- TEST 'rap_control_gnu' [06:32, 04:10](939 MB) -PASS -- TEST 'rap_decomp_gnu' [05:46, 04:08](944 MB) -PASS -- TEST 'rap_2threads_gnu' [08:46, 05:06](1004 MB) -PASS -- TEST 'rap_restart_gnu' [04:49, 02:12](670 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:42, 04:10](939 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:33, 04:13](940 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:55, 02:11](678 MB) -PASS -- TEST 'hrrr_control_gnu' [07:36, 04:03](937 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:34, 04:03](924 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:43, 03:28](1001 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:29, 04:04](937 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:09](670 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:02](759 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 07:39](937 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 03:31] -PASS -- TEST 'control_csawmg_gnu' [10:23, 07:44](837 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 05:38] -PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:12](1372 MB) -PASS -- TEST 'regional_debug_gnu' [15:26, 11:35](886 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:17, 01:59](951 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:17, 01:53](945 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:19, 01:57](950 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 01:58](952 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:25, 02:08](1040 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 03:08](945 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:17, 02:05](950 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:13](581 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:19](582 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:16](1535 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:04](950 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:50](952 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:24](957 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:41] -PASS -- TEST 'control_wam_debug_gnu' [07:36, 05:21](1387 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 02:55] -PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 01:44](826 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 03:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:34, 03:56](792 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:53, 03:53](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:44, 03:37](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 03:25](837 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:33, 03:54](791 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:44, 02:06](642 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:02](645 MB) -PASS -- TEST 'conus13km_control_gnu' [07:30, 03:49](1034 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:25, 01:49](1016 MB) -PASS -- TEST 'conus13km_decomp_gnu' [08:30, 05:38](1043 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:30, 02:03](762 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:31, 04:27](820 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 05:34] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 02:08](800 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:08](800 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:36, 08:29](1054 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:28, 08:38](778 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [12:31, 08:46](1037 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [11:28, 08:54](1056 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 08:54](1120 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:26] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:19, 01:55](827 MB) - -PASS -- COMPILE 's2swa_gnu' [17:10, 15:36] -PASS -- TEST 'cpld_control_p8_gnu' [14:11, 10:02](1730 MB) - -PASS -- COMPILE 's2s_gnu' [18:10, 15:35] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:50, 08:04](1629 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:36] -PASS -- TEST 'cpld_debug_p8_gnu' [08:49, 05:28](1716 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:28] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [17:47, 14:01](1589 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:02] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:47, 08:56](1601 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:02] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:15, 03:31](1606 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [09:11, 02:51] -PASS -- TEST 'control_gfs_mpas_gnu' [05:19, 00:49](6413 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:17, 06:02](1238 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:18, 05:59](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:05](1228 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:14](1239 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 09:39](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:12](1238 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:06](1239 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:26] ( 859 warnings 394 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:12, 07:42] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:48, 03:16](1307 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:38, 04:26](1040 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:59](1043 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 03:45](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:37](1073 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:08](997 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:46, 01:41](989 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:38](969 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:11, 08:04] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:44, 02:35](1517 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:17](1334 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:33, 02:33](1552 MB) +PASS -- TEST 'conus13km_restart_intel' [07:32, 01:34](1283 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:02] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:53](1097 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:27] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 04:05](1114 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:48](1124 MB) +PASS -- TEST 'conus13km_debug_intel' [20:42, 18:46](1574 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:33, 18:53](1162 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:29, 20:25](1372 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [21:28, 19:13](1590 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:33, 18:46](1628 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:55] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:17](1211 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:56] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:54, 05:09](1020 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:07, 05:25](1214 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:21, 03:38](1296 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 05:55](1095 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:01, 14:30](1132 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:13, 17:31](1158 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:52, 05:57](603 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 07:13](614 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:37, 03:47](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:46, 07:40](502 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:47, 05:02](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:50, 03:25](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:46, 03:59](662 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:25, 01:15](458 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:41] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:51, 10:51](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:27] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:00, 23:56](752 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:02, 18:30](828 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:32] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:55, 11:49](821 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:11, 19:33] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:54, 05:11](1095 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:59, 05:16](1078 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:44, 23:55](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:55] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 02:28](1865 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:34](1823 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:12](1127 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:17](1120 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:19](1130 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:28](1871 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:28](1870 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:16](1129 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:01](1708 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:56, 07:16](1192 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:22](1869 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:58](4833 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:54](4830 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:57] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:30](1775 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:50] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:22](1866 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:08] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 00:59](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 00:40](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:29](555 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:11, 08:43] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:59, 03:42](2048 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:10, 15:05] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:51, 05:10](2050 MB) + +PASS -- COMPILE 'atml_intel' [17:10, 15:07] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:56, 03:36](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:36, 03:20](1210 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:31] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:52, 08:43](1913 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:41] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:50, 02:10](1944 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:13] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:45](2012 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 04:20](1794 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:39, 04:25](1807 MB) + +PASS -- COMPILE 'atmaq_intel' [09:10, 07:54] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [17:19, 14:22](2944 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [19:16, 16:44](2946 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:34] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:11, 32:29](2957 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:11, 07:44] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:44](1082 MB) + +PASS -- COMPILE 'atm_gnu' [08:10, 06:28] +PASS -- TEST 'control_c48_gnu' [09:29, 07:51](1582 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 02:14](592 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 03:48](600 MB) +PASS -- TEST 'control_p8_gnu' [06:57, 04:15](1548 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 04:09](1543 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:29](640 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 03:36] +PASS -- TEST 'rap_control_gnu' [06:39, 04:18](941 MB) +PASS -- TEST 'rap_decomp_gnu' [06:36, 04:16](943 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 03:41](999 MB) +PASS -- TEST 'rap_restart_gnu' [04:52, 02:14](670 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:45, 04:14](942 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:42, 04:13](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:51, 02:12](678 MB) +PASS -- TEST 'hrrr_control_gnu' [08:36, 04:06](939 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:36, 04:04](923 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 03:38](1000 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:33, 04:09](937 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 02:08](674 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:05](757 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:57, 07:43](935 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:15] +PASS -- TEST 'control_csawmg_gnu' [11:27, 08:29](840 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:10, 05:43] +PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:17](1371 MB) +PASS -- TEST 'regional_debug_gnu' [09:26, 07:22](887 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:00](949 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:20, 01:58](953 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:22, 01:58](949 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 01:59](950 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:27, 02:12](1038 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:05](946 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:01](950 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:15, 01:15](582 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:15, 01:24](580 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:35, 02:19](1560 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](951 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 01:59](952 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:24](955 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:44] +PASS -- TEST 'control_wam_debug_gnu' [07:42, 05:35](1389 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:02] +PASS -- TEST 'control_csawmg_debug_gnu' [04:24, 02:13](829 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:38] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:46, 04:03](795 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 03:56](792 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 05:08](840 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:37, 03:29](838 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:55](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:34, 02:05](643 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:18, 03:20](644 MB) +PASS -- TEST 'conus13km_control_gnu' [05:43, 04:00](1034 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:34, 03:10](1018 MB) +PASS -- TEST 'conus13km_decomp_gnu' [08:36, 06:11](1039 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:31, 02:15](761 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 09:52] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:30](822 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:52] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 03:39](799 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:02](799 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:40, 08:49](1050 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:35, 08:52](778 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:30, 08:54](1033 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [11:26, 09:17](1057 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:26, 08:44](1120 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:50] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:09](828 MB) + +PASS -- COMPILE 's2swa_gnu' [33:12, 31:26] +PASS -- TEST 'cpld_control_p8_gnu' [13:24, 10:48](1730 MB) + +PASS -- COMPILE 's2s_gnu' [20:11, 18:10] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:58, 10:08](1629 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:35] +PASS -- TEST 'cpld_debug_p8_gnu' [09:00, 06:22](1737 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 17:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [17:00, 14:27](1613 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:10] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:58, 09:33](1605 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [22:10, 16:18] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:14, 03:40](1605 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [09:11, 02:49] +PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:35](6413 MB) SYNOPSIS: -Starting Date/Time: 20250928 04:39:27 -Ending Date/Time: 20250928 08:01:47 -Total Time: 03h:23m:24s +Starting Date/Time: 20250930 12:19:50 +Ending Date/Time: 20250930 14:07:14 +Total Time: 01h:48m:44s Compiles Completed: 60/60 Tests Completed: 270/270 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 15af4223c1..698d5dd909 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: -00c18728d4f13faf1aba08369b6e0bca1a6e4fba +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,317 +40,317 @@ 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-20250926 -COMPARISON DIRECTORY: /work/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2170265 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_642754 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 15:49] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:31, 15:45](2117 MB) -PASS -- TEST 'cpld_control_gefs_intel' [31:45, 19:19](3066 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [19:43, 06:15](2737 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [33:02, 20:14](3090 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:52] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:06, 20:06](1970 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:25, 21:50](2139 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:30, 08:24](1234 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:40, 09:32](2096 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:15, 24:13](1892 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:30] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:53, 20:19](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:08] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:53](1952 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:49] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:01, 16:58](2184 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:00, 15:45](2186 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:01, 08:32](1782 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:45, 15:32](2205 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:02, 08:23](1763 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:41, 12:13](2300 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:45, 15:39](2172 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:41, 13:31](2069 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:02, 15:46](2188 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:03, 15:32](2676 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:36, 08:44](2852 MB) - -PASS -- COMPILE 's2swal_intel' [18:11, 17:02] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:57, 16:40](2148 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:07, 08:30](1750 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 07:52](2157 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:58] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:07, 15:19](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:28, 06:50](2092 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:30, 13:37](2212 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:45] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:52](2034 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:18] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:39](2077 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:56] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:43, 16:02](2191 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 22:21] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:26, 17:32](2036 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:45, 08:14](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:27, 20:19](1937 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:01, 08:42](3054 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:04, 03:00](3035 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:02, 01:57](2485 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:52](2242 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:41, 01:14](2230 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:40, 01:01](1551 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:39, 01:57](2243 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:33, 01:19](2238 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:38, 00:57](1553 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:44, 01:19](2167 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:40, 01:05](2166 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:35, 01:10](1504 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:53] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 28:12](2003 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:13] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:43](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:33, 02:38](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:49](1603 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:45](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:50](1599 MB) -PASS -- TEST 'control_c48_intel' [10:36, 09:10](1712 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:16](843 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:36, 09:20](1703 MB) -PASS -- TEST 'control_c192_intel' [10:46, 08:15](1793 MB) -PASS -- TEST 'control_c384_intel' [12:46, 09:55](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [15:24, 10:15](1342 MB) -PASS -- TEST 'control_stochy_intel' [03:28, 01:52](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](490 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:43](649 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](657 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:47, 03:19](949 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:44](654 MB) -PASS -- TEST 'control_p8_intel' [06:20, 03:18](1891 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:31](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:42, 03:13](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:39, 03:11](1912 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:49, 03:22](1923 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:35, 02:20](2409 MB) -PASS -- TEST 'control_restart_p8_intel' [04:18, 01:56](1101 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:26, 03:15](1885 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:33, 01:56](1136 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:19](1877 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:06, 03:54](1978 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:57, 05:38](1897 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:30, 04:54](1943 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:34, 03:32](1904 MB) -PASS -- TEST 'merra2_thompson_intel' [06:39, 03:57](1893 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:29, 05:37](1908 MB) -PASS -- TEST 'regional_control_intel' [08:43, 06:26](1087 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 03:32](1104 MB) -PASS -- TEST 'regional_decomp_intel' [08:44, 06:48](1075 MB) -PASS -- TEST 'regional_2threads_intel' [06:51, 04:32](1023 MB) -PASS -- TEST 'regional_noquilt_intel' [08:56, 06:28](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:51, 06:27](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:44, 06:26](1095 MB) -PASS -- TEST 'regional_wofs_intel' [09:42, 07:50](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [14:13, 12:36] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [07:09, 04:32](1055 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 05:09](1355 MB) -PASS -- TEST 'rap_decomp_intel' [07:08, 04:40](1039 MB) -PASS -- TEST 'rap_2threads_intel' [08:26, 05:19](1127 MB) -PASS -- TEST 'rap_restart_intel' [05:44, 02:28](1005 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:10, 04:30](1040 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:06, 04:39](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:39, 02:27](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:34, 04:22](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:26](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:08, 05:00](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:23](965 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:15](1042 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 09:37](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:22](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [13:13, 11:41] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:38, 06:34](1043 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:30](744 MB) - -PASS -- COMPILE 'wam_intel' [13:12, 11:42] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [14:50, 12:57](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:53] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:28, 03:16](1888 MB) -PASS -- TEST 'regional_control_faster_intel' [08:47, 06:15](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:05] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:32, 02:16](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:37, 02:27](1621 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:05](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:47](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:15](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 02:45](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:33, 02:48](1693 MB) -PASS -- TEST 'control_debug_p8_intel' [04:51, 02:45](1914 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:37](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:51](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:52](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:52](1218 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:59](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:03](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:40, 05:13](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:01](1221 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:07](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:59](1227 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:02](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:51](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 04:57](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:52](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:56](1225 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:52](1217 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 04:17] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:51, 12:55](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:36] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:52](1233 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:16, 03:55](941 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 03:47](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:20, 04:37](973 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:46, 04:24](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:04, 03:56](910 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:29, 02:08](894 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 02:06](879 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 11:53] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:08, 03:41](1324 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:28](1233 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:55, 03:44](1357 MB) -PASS -- TEST 'conus13km_restart_intel' [03:53, 02:04](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:46] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:35](1012 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:14, 04:21] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:52](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:46](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [24:54, 23:10](1366 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:57, 21:54](1056 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 21:41](1302 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:59, 23:05](1395 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:58, 22:32](1434 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:14, 04:34] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 04:54](1178 MB) - -PASS -- COMPILE 'hafsw_intel' [16:15, 14:52] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:54](908 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:26, 05:58](1085 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 04:29](1225 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 07:05](970 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:22, 29:03](999 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:26, 33:41](1019 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 06:48](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 08:15](527 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:24](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:23, 08:46](423 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:44](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:57, 04:18](548 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:18](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:31](405 MB) -PASS -- TEST 'gnv1_nested_intel' [08:01, 04:19](1736 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:14, 05:31] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 12:38](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:43] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:02, 15:02](748 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:16, 15:16](722 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:14, 14:46] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:30, 11:06](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:13, 13:37] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:14, 07:15](961 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:14, 08:52](948 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:12](1211 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:56] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:27](1870 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:26](1823 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:07](1135 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:07](1128 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:08](1113 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:27](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:27](1873 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 03:07](1126 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:40](1662 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:09, 07:14](1031 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:27](1872 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:52](4831 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:19, 05:55](4820 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:30] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:59](1774 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:45] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 03:27](1869 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:13] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:01](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:42](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:31](314 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:36] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:28, 00:35](568 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:20](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:22] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 04:01](1998 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:23] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:00, 05:02](2004 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:46] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:23, 03:42](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:09](1077 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:31] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:54](1897 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:00] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:15](1909 MB) - -PASS -- COMPILE 'atmaero_intel' [14:10, 12:17] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:15, 05:42](1977 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:59, 05:21](1768 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:28](1795 MB) - -PASS -- COMPILE 'atmaq_intel' [13:10, 11:36] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:05, 18:35](2917 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:57, 22:15](2911 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:41] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:56, 39:16](2932 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:28] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:32, 13:33](1084 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [14:11, 12:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [08:09, 05:19](574 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:28] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:03, 16:26](2106 MB) +PASS -- TEST 'cpld_control_gefs_intel' [41:59, 19:54](3048 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [25:19, 07:01](2745 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [38:54, 21:24](3081 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:14] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:22, 20:52](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:46, 21:44](2150 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:53, 08:28](1214 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:27, 10:07](2079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:28, 24:24](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:44] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:10, 20:54](1961 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:15] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:04, 23:25](1940 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:40] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:19, 17:40](2197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:00, 17:15](2186 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:02, 09:12](1781 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:51, 16:13](2217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:00, 08:56](1765 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:50, 13:25](2299 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:51, 16:33](2177 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:50, 14:06](2071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:01, 16:59](2185 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:02, 16:37](2663 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:02, 09:12](2855 MB) + +PASS -- COMPILE 's2swal_intel' [18:11, 16:21] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [22:05, 18:19](2152 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [14:55, 09:18](1751 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:47, 09:17](2154 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:16] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:25, 16:09](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:37, 06:55](2100 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:24] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:30, 15:03](2215 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:58] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:22, 07:43](2036 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:20] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 05:00](2076 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:03] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:34, 17:09](2190 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 22:18] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:49, 18:33](2032 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 08:24](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:47, 20:43](1935 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [12:02, 09:14](3049 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:54, 03:07](3037 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [07:01, 02:16](2480 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:34, 01:29](2238 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:33, 00:49](2243 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:40, 01:02](1557 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:33, 01:34](2244 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:32, 00:51](2243 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:43, 01:24](1553 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:41, 00:58](2165 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:43, 01:40](2169 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:34, 01:27](1504 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:33] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:23, 29:00](2009 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:00] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [06:26, 03:48](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:39](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:56](1592 MB) +PASS -- TEST 'control_latlon_intel' [05:25, 02:51](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:31, 02:52](1595 MB) +PASS -- TEST 'control_c48_intel' [11:35, 09:10](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:36, 08:16](842 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:33, 09:22](1710 MB) +PASS -- TEST 'control_c192_intel' [10:49, 08:15](1789 MB) +PASS -- TEST 'control_c384_intel' [12:55, 09:58](1989 MB) +PASS -- TEST 'control_c384gdas_intel' [15:16, 10:27](1331 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:49](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:36, 01:09](482 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:44](654 MB) +PASS -- TEST 'control_iovr4_intel' [06:27, 02:49](654 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:36, 04:08](948 MB) +PASS -- TEST 'control_iovr5_intel' [06:25, 02:48](655 MB) +PASS -- TEST 'control_p8_intel' [09:29, 04:27](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:19, 04:28](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:21, 03:59](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:25, 04:07](1909 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:35, 03:58](1920 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:04, 03:32](2404 MB) +PASS -- TEST 'control_restart_p8_intel' [05:32, 02:15](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:54](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:26, 02:04](1121 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:12, 03:43](1871 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:04, 03:59](1976 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:38, 05:39](1893 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:19, 05:12](1942 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:13, 03:36](1896 MB) +PASS -- TEST 'merra2_thompson_intel' [07:40, 04:40](1891 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:21, 05:28](1908 MB) +PASS -- TEST 'regional_control_intel' [08:38, 06:41](1087 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:37](1102 MB) +PASS -- TEST 'regional_decomp_intel' [08:39, 06:41](1075 MB) +PASS -- TEST 'regional_2threads_intel' [06:46, 04:52](1013 MB) +PASS -- TEST 'regional_noquilt_intel' [08:46, 06:21](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:36, 06:40](1085 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 06:34](1092 MB) +PASS -- TEST 'regional_wofs_intel' [09:34, 07:52](1907 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:29] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [07:08, 04:35](1049 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:09](1360 MB) +PASS -- TEST 'rap_decomp_intel' [07:03, 04:42](1040 MB) +PASS -- TEST 'rap_2threads_intel' [08:25, 05:18](1127 MB) +PASS -- TEST 'rap_restart_intel' [05:30, 02:28](1011 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:57, 04:30](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:57, 04:38](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 02:28](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:06, 04:22](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:04, 04:27](1035 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:14, 05:00](1108 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:24, 02:24](969 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:30, 08:15](1040 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:37](2000 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 09:20](2013 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:07] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:42, 07:18](1047 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:29](747 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 11:58] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [15:47, 13:11](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:04] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:20, 03:12](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [07:33, 06:05](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:16] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:36, 02:21](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:22](1625 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:24](834 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:46, 05:10](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:53](842 MB) +PASS -- TEST 'control_diag_debug_intel' [04:43, 02:51](1689 MB) +PASS -- TEST 'control_debug_p8_intel' [10:54, 03:56](1918 MB) +PASS -- TEST 'regional_debug_intel' [25:47, 18:36](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [11:24, 05:12](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:45](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:52](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 04:53](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:54](1215 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:25](1308 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:59](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 05:08](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:05](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 04:50](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:57](1226 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 05:03](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:00](1220 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:00](1231 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 04:53](1219 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 04:33] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:46, 13:21](1698 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 11:42] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 04:54](1230 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:20, 03:55](932 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 03:50](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:37](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:19, 04:27](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:51, 04:00](908 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 02:12](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:07](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 12:07] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:07, 03:49](1324 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:52, 01:36](1231 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:09, 03:48](1348 MB) +PASS -- TEST 'conus13km_restart_intel' [05:01, 02:13](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:46] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:37](1015 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 04:28] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:51](1100 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:48](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [24:52, 22:50](1358 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:46, 22:03](1063 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:45, 21:46](1274 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:51, 22:38](1396 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:47, 22:28](1413 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 04:36] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:55](1164 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 14:15] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:05, 04:37](912 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:35, 07:09](1079 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:29](1215 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 06:30](970 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [36:22, 29:11](995 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:43, 34:42](1027 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:08, 06:36](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:27](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:59, 03:18](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:27, 08:11](420 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 04:21](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:00, 04:08](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 05:11](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:26](396 MB) +PASS -- TEST 'gnv1_nested_intel' [07:12, 03:59](1734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 05:29] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 12:33](577 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 14:09] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:14, 15:06](654 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:03, 15:09](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:12, 16:12] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:15, 11:07](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:12, 13:10] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:11, 06:36](970 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:03, 06:35](950 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:03, 16:13](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:47] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 03:26](1871 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:24](1821 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:06](1131 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:09](1123 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:09](1108 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:28](1875 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 03:27](1870 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:06](1125 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:27, 07:39](1666 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 07:14](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:25](1866 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:19, 05:50](4833 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:56](4831 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:26] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:59](1774 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:32] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:27](1873 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:21](249 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:46](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:34](312 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:33] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](570 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](455 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:22] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:19, 04:30](1990 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 12:47] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:06, 05:52](1997 MB) + +PASS -- COMPILE 'atml_intel' [16:12, 13:21] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:40, 04:30](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:08, 03:06](1110 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 05:54] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 05:50](1894 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:11] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:20, 03:48](1910 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:21] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:16, 05:27](1982 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:04, 05:27](1765 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 05:28](1791 MB) + +PASS -- COMPILE 'atmaq_intel' [13:10, 11:44] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:17, 19:09](2908 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [26:06, 22:46](2910 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:44] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [44:23, 40:41](2930 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:49] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:44](1086 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [15:11, 13:10] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [07:14, 05:09](566 MB) SYNOPSIS: -Starting Date/Time: 20250926 14:12:03 -Ending Date/Time: 20250926 16:17:28 -Total Time: 02h:06m:08s +Starting Date/Time: 20250930 12:19:55 +Ending Date/Time: 20250930 14:36:56 +Total Time: 02h:18m:03s Compiles Completed: 45/45 Tests Completed: 210/210 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index fbb0971fcc..db4a2dcb9a 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: -d4eeb023bef9a3a10e1323812c7089df427d2ff7 +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,439 +40,510 @@ 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-20250926 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3645576 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_494643 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:51] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 07:23](2170 MB) -PASS -- TEST 'cpld_control_gefs_intel' [37:39, 21:44](3268 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [35:30, 06:47](2970 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [47:58, 32:16](3446 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:12, 13:28] ( 1041 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:42, 12:12](2059 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 13:12](2616 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:55, 05:14](1510 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [27:04, 06:04](2385 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:38, 20:31](1998 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:12, 12:54] ( 1041 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:34, 12:48](2000 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:12] ( 1554 warnings 2932 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:41, 13:37](2086 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:22] ( 1043 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:57, 07:31](2490 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:00, 07:30](2513 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:55, 03:48](2275 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:52, 06:57](2364 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:00, 03:49](1988 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:57, 16:00](3005 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:58, 07:14](2447 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:52, 11:37](2331 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:00, 07:10](2455 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:40, 19:06](3600 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:03, 12:26](3493 MB) - -PASS -- COMPILE 's2swal_intel' [10:11, 08:58] ( 1064 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [12:58, 08:15](2519 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [16:00, 03:49](2290 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:53, 16:19](3152 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:10] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:45, 06:33](2086 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 04:53](2992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:32] ( 1444 warnings 2182 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:50, 09:05](2373 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:09] ( 1444 warnings 2164 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:39, 04:35](2107 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:23] ( 947 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 03:23](2190 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:12, 09:18] ( 1029 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:54, 06:34](2531 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 12:33] ( 1034 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:43, 11:18](2172 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:57, 05:22](1669 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:47, 15:24](2118 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:22](3030 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:24](3021 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:31, 00:55](2469 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:27, 00:53](2213 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:27, 00:33](2211 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:26](1534 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:28, 00:51](2209 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:33](2210 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:26, 00:27](1534 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:34](2138 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:27, 00:28](2137 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1488 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 03:48] ( 1554 warnings 2914 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 19:11](2180 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 06:35] ( 502 remarks ) -PASS -- TEST 'control_flake_intel' [18:19, 02:34](1341 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:19, 10:22](2226 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:20, 01:44](2219 MB) -PASS -- TEST 'control_latlon_intel' [05:17, 01:56](2229 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:21, 04:28](2231 MB) -PASS -- TEST 'control_c48_intel' [07:20, 04:49](1672 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 04:23](803 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:20, 04:54](1670 MB) -PASS -- TEST 'control_c192_intel' [19:35, 04:59](1825 MB) -PASS -- TEST 'control_c384_intel' [10:09, 06:05](2089 MB) -PASS -- TEST 'control_c384gdas_intel' [14:49, 06:15](1817 MB) -PASS -- TEST 'control_stochy_intel' [08:17, 01:12](1296 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:17, 00:42](1193 MB) -PASS -- TEST 'control_lndp_intel' [08:17, 01:09](1305 MB) -PASS -- TEST 'control_iovr4_intel' [08:17, 02:05](1302 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:27, 02:09](1607 MB) -PASS -- TEST 'control_iovr5_intel' [07:17, 01:45](1314 MB) -PASS -- TEST 'control_p8_intel' [09:31, 04:51](2529 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 02:15](2518 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:37, 02:05](2533 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:35, 02:05](2529 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:37, 04:26](2549 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [14:38, 10:26](2420 MB) -PASS -- TEST 'control_restart_p8_intel' [03:33, 01:18](1782 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:06](2500 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 01:18](1866 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:38, 02:14](2517 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:32, 01:46](2019 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:31, 03:32](2527 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 02:49](2592 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:37, 02:13](2527 MB) -PASS -- TEST 'merra2_thompson_intel' [17:38, 14:21](2551 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:23, 03:34](2540 MB) -PASS -- TEST 'regional_control_intel' [06:27, 03:36](1721 MB) -PASS -- TEST 'regional_restart_intel' [04:30, 02:10](1698 MB) -PASS -- TEST 'regional_decomp_intel' [06:27, 03:47](1712 MB) -PASS -- TEST 'regional_2threads_intel' [04:26, 02:10](1566 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 03:39](1995 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 03:37](1720 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:36](1723 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 04:34](2658 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 05:49] ( 3 warnings 447 remarks ) -PASS -- TEST 'rap_control_intel' [06:25, 04:59](1765 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:49, 02:47](1599 MB) -PASS -- TEST 'rap_decomp_intel' [05:37, 02:53](1705 MB) -PASS -- TEST 'rap_2threads_intel' [05:23, 02:22](1178 MB) -PASS -- TEST 'rap_restart_intel' [25:31, 01:41](1784 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:26, 02:49](1769 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:26, 02:57](1735 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [24:33, 01:40](1775 MB) -PASS -- TEST 'hrrr_control_intel' [06:27, 02:41](1773 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:23, 02:47](1704 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [28:28, 02:15](1173 MB) -PASS -- TEST 'hrrr_control_restart_intel' [23:20, 01:38](1708 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:26, 04:55](1906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:18, 06:24](2653 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:11](2905 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 05:13] ( 416 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:29, 04:24](1771 MB) -PASS -- TEST 'control_ras_intel' [04:18, 02:19](1588 MB) - -PASS -- COMPILE 'wam_intel' [08:10, 05:28] ( 394 remarks ) -PASS -- TEST 'control_wam_intel' [10:34, 08:00](2417 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:10, 05:33] ( 410 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:35, 02:17](2534 MB) -PASS -- TEST 'regional_control_faster_intel' [05:28, 03:31](1725 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 03:29] ( 902 warnings 588 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 01:37](2243 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:22, 01:40](2259 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:37, 07:45](1489 MB) -PASS -- TEST 'control_lndp_debug_intel' [26:23, 02:00](1471 MB) -PASS -- TEST 'control_csawmg_debug_intel' [26:31, 03:04](1788 MB) -PASS -- TEST 'control_ras_debug_intel' [25:18, 02:00](1496 MB) -PASS -- TEST 'control_diag_debug_intel' [25:27, 01:57](2327 MB) -PASS -- TEST 'control_debug_p8_intel' [25:28, 01:59](2551 MB) -PASS -- TEST 'regional_debug_intel' [51:29, 29:15](1647 MB) -PASS -- TEST 'rap_control_debug_intel' [25:22, 03:31](1881 MB) -PASS -- TEST 'hrrr_control_debug_intel' [24:22, 03:28](1879 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [24:21, 03:29](1872 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [24:23, 03:31](1869 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:32, 03:33](1885 MB) -PASS -- TEST 'rap_diag_debug_intel' [25:29, 03:56](1965 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:21, 03:32](1871 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:18, 03:37](1871 MB) -PASS -- TEST 'rap_lndp_debug_intel' [23:20, 03:36](1884 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:19, 03:31](1876 MB) -PASS -- TEST 'rap_noah_debug_intel' [22:20, 03:28](1871 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [21:18, 03:32](1876 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:19, 06:00](1870 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [19:29, 03:43](1881 MB) -PASS -- TEST 'rap_flake_debug_intel' [18:22, 03:29](1874 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:31, 06:21](1872 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:04] ( 859 warnings 394 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:35, 09:06](2316 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:20] ( 3 warnings 414 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 02:50](1473 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:21, 02:23](1745 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:19](1720 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:24, 01:59](1077 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 01:51](1056 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:26](1672 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:17](1634 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:14](1617 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:10, 05:27] ( 3 warnings 391 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:36, 01:58](1775 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:48](1786 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:31, 02:02](1819 MB) -PASS -- TEST 'conus13km_restart_intel' [03:35, 01:12](1554 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 05:28] ( 3 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:32, 12:01](1948 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:22] ( 793 warnings 420 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:23](1744 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:16, 03:32](1741 MB) -PASS -- TEST 'conus13km_debug_intel' [16:45, 14:37](1844 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 15:13](1454 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:33, 08:40](1847 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [18:34, 15:45](1874 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:33, 15:00](1897 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:10] ( 793 warnings 414 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 03:45](1859 MB) - -PASS -- COMPILE 'hafsw_intel' [11:10, 08:27] ( 694 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:41, 04:00](1191 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:50, 04:08](1384 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:21, 02:44](1482 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:04, 04:43](1314 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:02, 31:59](1345 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:03, 23:39](1401 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:24](802 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:44, 04:28](820 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:05](532 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:55, 04:40](626 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:24](761 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:28, 02:12](748 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:31, 02:45](821 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:50](535 MB) -PASS -- TEST 'gnv1_nested_intel' [05:47, 02:48](1764 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 02:31] ( 1499 warnings 2056 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:34, 08:16](747 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:10, 08:03] ( 659 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:53, 26:17](872 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:43, 27:24](1068 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 07:58] ( 927 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:15, 17:41](1103 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 08:23] ( 636 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:26](1296 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 04:27](1294 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:41, 11:40](1814 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:23] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 01:52](1945 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:10](1889 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:44](1196 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:01](1195 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 01:46](1204 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 01:57](1936 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 01:59](1936 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 06:34](1207 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:32](1841 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:52, 05:27](1360 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 01:58](1941 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:13](4788 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:01](4786 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:15] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:12](1844 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:20] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:08](1941 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:53] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 06:42](2188 MB) +PASS -- TEST 'cpld_control_gefs_intel' [30:50, 21:31](3260 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [15:56, 05:37](2983 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [43:10, 32:01](3455 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:42] ( 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:42, 11:50](2056 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 13:38](2597 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:08, 05:22](1493 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [09:00, 06:03](2367 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:16](2007 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:50] ( 1041 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:33, 12:36](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:53] ( 1554 warnings 2932 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:51, 13:12](2089 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:18] ( 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:52, 07:35](2506 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:57, 06:55](2474 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:48](2314 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:56, 07:11](2361 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 04:04](1965 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:48, 15:44](3007 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:47, 06:57](2465 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 11:48](2306 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:57, 06:55](2486 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:39, 19:14](3606 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:28, 12:27](3487 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:53] ( 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [10:56, 07:54](2516 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:54, 03:58](2305 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:51, 05:35](3091 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:06] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:43, 06:39](2086 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:51, 05:01](2986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:47] ( 1444 warnings 2182 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:59, 09:05](2377 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:43] ( 1444 warnings 2164 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 04:42](2113 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:35] ( 947 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:46, 03:27](2168 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:21] ( 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 06:30](2454 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:32] ( 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:41, 11:00](2174 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 05:21](1686 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:49, 15:21](2097 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:32, 04:24](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:30](3021 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:29, 00:53](2466 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:27, 00:55](2213 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:37](2213 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:31](1531 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 00:55](2212 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:36](2212 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:25, 00:27](1534 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:37](2138 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:31](2138 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:24](1489 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:16] ( 1554 warnings 2914 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:43, 19:16](2184 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:36] ( 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:19, 02:55](1350 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 01:38](2218 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 01:59](2226 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 01:54](2224 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:23, 01:45](2218 MB) +PASS -- TEST 'control_c48_intel' [07:21, 04:42](1669 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:20, 11:30](806 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:21, 04:53](1671 MB) +PASS -- TEST 'control_c192_intel' [06:29, 05:00](1845 MB) +PASS -- TEST 'control_c384_intel' [08:05, 05:45](2131 MB) +PASS -- TEST 'control_c384gdas_intel' [11:52, 07:59](1873 MB) +PASS -- TEST 'control_stochy_intel' [09:16, 07:11](1314 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:42](1211 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:09](1313 MB) +PASS -- TEST 'control_iovr4_intel' [04:17, 01:48](1294 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:26, 02:13](1599 MB) +PASS -- TEST 'control_iovr5_intel' [04:17, 01:48](1301 MB) +PASS -- TEST 'control_p8_intel' [04:34, 02:17](2499 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:41, 09:22](2546 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:31, 02:05](2532 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:34, 02:05](2542 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:34, 02:15](2552 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:36, 10:36](2397 MB) +PASS -- TEST 'control_restart_p8_intel' [03:31, 01:18](1839 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:33, 07:40](2522 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:32, 01:19](1862 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:30, 02:13](2501 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:29, 01:46](2020 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:29, 03:33](2521 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:33, 02:55](2591 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:15](2529 MB) +PASS -- TEST 'merra2_thompson_intel' [04:33, 02:36](2536 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:37](2540 MB) +PASS -- TEST 'regional_control_intel' [05:27, 03:41](1718 MB) +PASS -- TEST 'regional_restart_intel' [03:28, 02:01](1700 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 03:47](1712 MB) +PASS -- TEST 'regional_2threads_intel' [04:27, 02:14](1566 MB) +PASS -- TEST 'regional_noquilt_intel' [05:26, 03:32](1994 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:34](1731 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 03:34](1713 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 04:27](2632 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 05:51] ( 3 warnings 447 remarks ) +PASS -- TEST 'rap_control_intel' [04:27, 02:49](1800 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:45, 02:48](1613 MB) +PASS -- TEST 'rap_decomp_intel' [04:23, 02:49](1736 MB) +PASS -- TEST 'rap_2threads_intel' [04:23, 02:17](1182 MB) +PASS -- TEST 'rap_restart_intel' [09:30, 07:16](1858 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:26, 02:49](1802 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:25, 02:54](1743 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:31, 01:30](1745 MB) +PASS -- TEST 'hrrr_control_intel' [07:22, 05:24](1793 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:25, 02:59](1705 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 02:11](1169 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:28](1702 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:31, 05:14](1917 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 06:22](2667 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 06:07](2923 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:30] ( 416 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:28, 04:28](1747 MB) +PASS -- TEST 'control_ras_intel' [04:19, 02:17](1597 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:25] ( 394 remarks ) +PASS -- TEST 'control_wam_intel' [09:38, 08:07](2426 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:35] ( 410 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:33, 02:07](2532 MB) +PASS -- TEST 'regional_control_faster_intel' [05:26, 03:29](1720 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 03:19] ( 902 warnings 588 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:41](2234 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 01:39](2265 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:12](1485 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 01:58](1481 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:11](1794 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 01:59](1503 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 03:01](2326 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](2550 MB) +PASS -- TEST 'regional_debug_intel' [13:32, 11:58](1621 MB) +PASS -- TEST 'rap_control_debug_intel' [05:20, 03:32](1870 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:26](1865 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:34](1878 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:32](1873 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 03:34](1878 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:24, 03:57](1967 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 03:38](1872 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 03:38](1881 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:21](1867 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 03:34](1876 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:21, 09:33](1883 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:09](1879 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:12](1882 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 03:47](1883 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:35](1869 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:36, 06:03](1883 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:03] ( 859 warnings 394 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:37, 09:03](2290 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:19] ( 3 warnings 414 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:47, 02:39](1478 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 02:23](1729 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:30, 02:20](1707 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:23, 01:55](1069 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 01:51](1052 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:21, 02:23](1644 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:26, 01:35](1625 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:17](1640 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:30] ( 3 warnings 391 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:40, 02:08](1767 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:31, 00:56](1804 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:41, 01:59](1826 MB) +PASS -- TEST 'conus13km_restart_intel' [04:00, 01:09](1574 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:29] ( 3 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 02:54](1830 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:16] ( 793 warnings 420 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:24](1751 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 03:20](1743 MB) +PASS -- TEST 'conus13km_debug_intel' [17:36, 14:55](1830 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:39, 14:35](1464 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:31, 08:18](1834 MB) +FAILED: TEST TIMED OUT -- TEST 'conus13km_debug_decomp_intel' [, ]( MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:34, 13:42](1914 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:07] ( 793 warnings 414 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:16](1856 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:11] ( 694 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:38, 02:35](1205 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:54, 03:56](1389 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:24, 02:38](1479 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:44, 04:21](1322 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:43, 31:40](1359 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:48, 23:22](1387 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:15](801 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:42, 03:56](817 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 01:33](537 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:58, 04:26](613 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:19](755 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:29, 02:10](772 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:30, 02:36](812 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 00:46](535 MB) +PASS -- TEST 'gnv1_nested_intel' [04:47, 02:27](1748 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 02:29] ( 1499 warnings 2056 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:08](711 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 08:08] ( 659 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:31, 26:43](904 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:35, 27:58](1077 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:53] ( 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:10, 17:55](1098 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 08:15] ( 636 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:37, 04:00](1305 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:37, 04:01](1326 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:42, 11:35](1818 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 04:30] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:17, 14:41](1933 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:16, 01:15](1889 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:51](1201 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 01:51](1199 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 01:45](1206 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 01:58](1934 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 01:56](1946 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:45](1198 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:57, 05:30](1841 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:56, 05:24](1367 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:04](1937 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:23](4787 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:07](4788 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:09] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:21](1846 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:10, 04:04] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:15, 04:58](1940 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:40] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:42](366 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:33](623 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:23, 00:23](619 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:44](359 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 00:31](622 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:24](624 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 05:59] ( 610 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:39](2841 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 06:16] ( 610 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:41, 02:40](2839 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 05:48] ( 498 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:35, 03:27](2880 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 05:45] ( 498 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:34, 03:24](2866 MB) -PASS -- COMPILE 'atml_intel' [08:11, 06:16] ( 8 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:36, 02:30](1928 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 01:28](1251 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:18] ( 8 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:35, 02:24](1903 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:30, 01:27](1333 MB) -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:08] ( 907 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:33](1962 MB) +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:08] ( 907 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:36, 03:31](1947 MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:24] ( 519 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:33, 06:40](2701 MB) +PASS -- COMPILE 'atmw_intel' [10:10, 07:47] ( 519 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:34, 01:49](2686 MB) -PASS -- COMPILE 'atmaero_intel' [07:10, 05:30] ( 412 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:39, 03:03](2016 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 03:17](2400 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:23](2432 MB) +PASS -- COMPILE 'atmaero_intel' [08:10, 05:52] ( 412 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:41, 03:14](2018 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:31, 03:19](2399 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:30, 03:33](2420 MB) -PASS -- COMPILE 'atmaq_intel' [07:10, 05:25] ( 8 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:27, 11:20](2873 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:20, 13:09](2874 MB) +PASS -- COMPILE 'atmaq_intel' [08:10, 05:39] ( 8 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:21, 11:04](2873 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [17:11, 13:05](2878 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:07] ( 884 warnings 609 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:32, 26:48](2890 MB) +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 02:25] ( 884 warnings 609 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [31:24, 27:04](2888 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:13] ( 3 warnings 421 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [09:26, 07:01](1133 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:14] ( 3 warnings 421 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [09:20, 06:47](1136 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:10, 12:23] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:00, 12:00](2059 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:13, 12:47] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [14:41, 11:37](2069 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:10, 03:25] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:46, 13:11](2088 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:23] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [16:53, 13:15](2094 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [15:11, 12:47] -PASS -- TEST 'cpld_control_sfs_intelllvm' [14:35, 12:32](2002 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:11, 12:15] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:41, 12:34](2009 MB) -PASS -- COMPILE 's2swa_intelllvm' [10:10, 08:28] -PASS -- TEST 'cpld_control_p8_intelllvm' [10:55, 07:32](2522 MB) +PASS -- COMPILE 's2swa_intelllvm' [10:10, 08:43] +PASS -- TEST 'cpld_control_p8_intelllvm' [10:55, 07:37](2498 MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:10] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:26, 02:22](1714 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:21] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:25, 02:25](1719 MB) -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:14, 05:14] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:26, 02:52](1813 MB) +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:14] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:26, 02:54](1816 MB) -PASS -- COMPILE 'hafsw_intelllvm' [09:16, 07:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:36, 02:46](805 MB) +PASS -- COMPILE 'hafsw_intelllvm' [09:11, 07:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:35, 02:38](814 MB) -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:14, 02:22] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:34, 08:17](722 MB) +PASS -- COMPILE 'hafsw_debug_intelllvm' [04:10, 02:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:32, 08:10](728 MB) -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:14, 04:26] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:14, 01:55](1944 MB) +PASS -- COMPILE 'datm_cdeps_intelllvm' [06:12, 04:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [14:16, 12:27](1997 MB) -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:25] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:14, 04:11](1853 MB) +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:19] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [16:23, 14:23](1851 MB) -PASS -- COMPILE 'atm_gnu' [05:10, 02:52] -PASS -- TEST 'control_c48_gnu' [08:20, 05:39](1513 MB) +PASS -- COMPILE 'atm_gnu' [04:11, 02:53] +PASS -- TEST 'control_c48_gnu' [07:20, 05:39](1512 MB) PASS -- TEST 'control_stochy_gnu' [04:15, 01:57](515 MB) -PASS -- TEST 'control_ras_gnu' [06:15, 03:13](545 MB) -PASS -- TEST 'control_p8_gnu' [05:33, 02:58](1453 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:33, 02:59](1463 MB) -PASS -- TEST 'control_flake_gnu' [06:18, 04:08](560 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:48] -PASS -- TEST 'rap_control_gnu' [11:30, 09:03](854 MB) -PASS -- TEST 'rap_decomp_gnu' [06:22, 03:26](856 MB) -PASS -- TEST 'rap_2threads_gnu' [04:25, 02:38](908 MB) -PASS -- TEST 'rap_restart_gnu' [04:29, 01:49](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [06:24, 03:22](854 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:34, 03:23](854 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:36, 01:51](580 MB) -PASS -- TEST 'hrrr_control_gnu' [05:29, 03:21](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 03:20](840 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:33](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 03:26](856 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:22, 01:49](579 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:18, 01:45](662 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:27, 07:01](850 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 02:35] -PASS -- TEST 'control_csawmg_gnu' [07:29, 05:41](759 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 04:45] -PASS -- TEST 'control_diag_debug_gnu' [04:23, 01:19](1286 MB) -PASS -- TEST 'regional_debug_gnu' [22:36, 20:07](764 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:17, 01:49](862 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 01:48](862 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 01:46](865 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 01:48](867 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:04](948 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 02:49](859 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 01:53](861 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:11](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:14](499 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:23](1439 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 01:51](861 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [08:17, 05:14](862 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:27, 02:59](873 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:24] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:31](1310 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:35] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:47](745 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:51] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:25, 03:16](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:23, 03:08](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:21, 02:27](737 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:22, 02:23](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:21, 03:10](714 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:21, 01:42](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 01:48](558 MB) -PASS -- TEST 'conus13km_control_gnu' [22:50, 19:46](910 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:16](907 MB) -PASS -- TEST 'conus13km_decomp_gnu' [05:37, 02:51](908 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:33, 01:44](586 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 06:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 03:39](738 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 04:54] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:17, 01:54](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:57](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:39, 06:56](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:00, 06:51](649 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:56, 04:03](925 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [21:54, 18:54](926 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:16](991 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 04:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 01:50](744 MB) - -PASS -- COMPILE 's2swa_gnu' [12:11, 10:48] -PASS -- TEST 'cpld_control_p8_gnu' [11:00, 07:35](1602 MB) - -PASS -- COMPILE 's2s_gnu' [12:11, 10:10] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:51, 06:58](1557 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:12, 01:57] -PASS -- TEST 'cpld_debug_p8_gnu' [08:47, 05:22](1625 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:37] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:41, 08:58](1566 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:43] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:37, 06:37](1570 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:10, 10:04] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:18](1511 MB) +PASS -- TEST 'control_ras_gnu' [19:18, 16:40](518 MB) +PASS -- TEST 'control_p8_gnu' [05:34, 03:01](1454 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:33, 03:03](1462 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 03:57](560 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 02:43] +PASS -- TEST 'rap_control_gnu' [06:22, 03:25](852 MB) +PASS -- TEST 'rap_decomp_gnu' [06:22, 03:25](855 MB) +PASS -- TEST 'rap_2threads_gnu' [05:25, 02:46](910 MB) +PASS -- TEST 'rap_restart_gnu' [03:25, 01:48](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [06:25, 03:26](852 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:22, 03:25](853 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:27, 01:48](579 MB) +PASS -- TEST 'hrrr_control_gnu' [06:24, 03:21](856 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:21, 03:24](842 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:25, 02:34](900 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [15:25, 13:16](854 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 01:46](580 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 01:46](669 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:23](844 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:39] +PASS -- TEST 'control_csawmg_gnu' [07:26, 05:34](760 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:20, 04:40] +PASS -- TEST 'control_diag_debug_gnu' [04:45, 01:20](1287 MB) +PASS -- TEST 'regional_debug_gnu' [13:27, 11:40](775 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:49](863 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 01:46](863 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:48](865 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [08:17, 05:36](865 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:27, 02:01](948 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:17, 02:50](858 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 01:47](861 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:29, 01:17](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:12](497 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:33](1459 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:04](861 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:21](861 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:27, 02:56](871 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:24] +PASS -- TEST 'control_wam_debug_gnu' [06:54, 04:32](1310 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:26] +PASS -- TEST 'control_csawmg_debug_gnu' [03:31, 01:46](743 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:42] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:27, 03:12](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:25, 03:08](714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:21, 02:28](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:20, 02:25](732 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:20, 03:28](712 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:22, 01:42](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:17, 01:40](556 MB) +PASS -- TEST 'conus13km_control_gnu' [20:42, 18:16](904 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:36, 01:09](906 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:33, 03:16](907 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:38, 01:40](586 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:10, 06:07] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 03:41](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 04:56] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:17, 01:49](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:17, 01:44](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:33, 07:16](922 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:37, 07:04](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:35, 04:09](925 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:34, 07:24](926 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [18:37, 16:59](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 04:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:50](744 MB) + +PASS -- COMPILE 's2swa_gnu' [14:12, 11:47] +PASS -- TEST 'cpld_control_p8_gnu' [10:05, 07:32](1592 MB) + +PASS -- COMPILE 's2s_gnu' [13:10, 10:35] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:59, 06:52](1559 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:01] +PASS -- TEST 'cpld_debug_p8_gnu' [06:47, 04:46](1614 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [13:10, 11:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:41, 08:55](1580 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:13, 01:51] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:39, 06:34](1571 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [13:10, 11:15] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:16](1513 MB) SYNOPSIS: -Starting Date/Time: 20250926 19:28:19 -Ending Date/Time: 20250926 21:40:19 -Total Time: 02h:12m:42s +Starting Date/Time: 20250930 20:41:59 +Ending Date/Time: 20250930 22:33:20 +Total Time: 01h:51m:55s Compiles Completed: 69/69 -Tests Completed: 282/282 +Tests Completed: 281/282 +Failed Tests: +* TEST conus13km_debug_decomp_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_494643/conus13km_debug_decomp_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: +99ef85ab7013c7e93bc05ee18dbe567c06658f4f + +Submodule hashes used in testing: + 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) + 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) + 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) + 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 374373588e22cd86f1b8eb670d489c2967a6b40a CMEPS-interface/CMEPS (cmeps_v0.4.1-2324-g3743735) + 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (heads/develop) + 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) + c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) + 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/feature/mpas-in-ufs) + 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) +-179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd +-3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) + 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-20250930 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2843544 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: conus13km_debug_decomp +* (-e) - USE ECFLOW + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:05] ( 793 warnings 420 remarks ) +PASS -- TEST 'conus13km_debug_decomp_intel' [17:36, 15:24](1871 MB) + +SYNOPSIS: +Starting Date/Time: 20251001 03:29:35 +Ending Date/Time: 20251001 03:52:35 +Total Time: 00h:23m:06s +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 3b9a637656..28a2a521d5 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: -da282905810dba20995a517818996e4ba66d8f33 +8d64b97cf8582682b633580fd051ef17f4064293 Submodule hashes used in testing: 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) @@ -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) 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) - 446cf8e965d9f401176118a68495af89776b4d34 UFSATM (remotes/origin/glacier_mods) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (remotes/origin/HEAD) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - a008c658353ffd48a3ecc49ca1d65da37a69d3bd UFSATM/ccpp/physics (remotes/origin/glacier_mods) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 2a9663769a97c351ffdff4648e35f9f5b9319fd8 WW3 (6.07.1-470-g2a966376) + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) @@ -40,263 +40,337 @@ 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-20250926 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_21060 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250930 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_596188 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:33] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:48, 07:51](3348 MB) -PASS -- TEST 'cpld_control_gefs_intel' [36:55, 18:10](4106 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [28:55, 08:12](3915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 12:49] ( 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 16:04](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:02, 17:29](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:00, 07:55](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:08, 08:16](1928 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:54, 18:14](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:32, 13:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:44, 16:06](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 04:57] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:53, 20:29](1940 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:23, 09:41](3381 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:49, 09:57](3379 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:02, 05:46](3264 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:06, 09:49](3408 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:51, 05:36](3290 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:01, 09:26](3619 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:59, 09:37](3372 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:41, 08:07](3329 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:56, 09:48](3378 MB) - -PASS -- COMPILE 's2swal_intel' [13:28, 11:51] ( 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:26, 10:16](3339 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:07, 06:08](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 08:25](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:47] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 05:33](1981 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:50] ( 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 09:26](3386 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:32, 12:46] ( 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:25, 15:57](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 08:08](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:21, 18:14](1895 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:00, 06:54](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:52, 02:51](2894 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:49, 02:27](2321 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:07, 01:51](2110 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:08, 01:28](2113 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:13, 01:46](1488 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:07, 01:57](2106 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:07, 01:33](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:13, 02:32](1487 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:07, 01:42](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:07, 01:29](2039 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:10, 01:34](1396 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:24, 04:53] ( 1534 warnings 1946 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 24:27](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:29, 09:39] ( 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:45, 04:20](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 02:43](1578 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:56](1588 MB) -PASS -- TEST 'control_latlon_intel' [04:39, 02:52](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:53, 02:59](1588 MB) -PASS -- TEST 'control_c48_intel' [09:08, 06:50](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:05, 06:14](723 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:57, 06:59](1600 MB) -PASS -- TEST 'control_c192_intel' [10:19, 07:32](1707 MB) -PASS -- TEST 'control_c384_intel' [13:52, 09:13](2007 MB) -PASS -- TEST 'control_c384gdas_intel' [16:59, 09:44](1178 MB) -PASS -- TEST 'control_stochy_intel' [04:43, 02:02](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:47, 01:24](408 MB) -PASS -- TEST 'control_lndp_intel' [04:38, 02:06](643 MB) -PASS -- TEST 'control_iovr4_intel' [05:51, 03:04](637 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:09, 03:56](917 MB) -PASS -- TEST 'control_iovr5_intel' [05:43, 03:06](639 MB) -PASS -- TEST 'control_p8_intel' [07:37, 03:47](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:35, 03:59](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:41, 03:44](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:27, 03:45](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:39, 03:57](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:07, 02:57](2438 MB) -PASS -- TEST 'control_restart_p8_intel' [06:30, 02:39](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:55, 03:47](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:16, 02:19](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:49, 03:46](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:51, 03:24](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:22, 05:46](1871 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:30, 05:01](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:00, 04:00](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [08:46, 04:25](1868 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:38, 06:14](1875 MB) -PASS -- TEST 'regional_control_intel' [08:09, 05:55](872 MB) -PASS -- TEST 'regional_restart_intel' [07:03, 04:01](883 MB) -PASS -- TEST 'regional_decomp_intel' [08:09, 06:01](874 MB) -PASS -- TEST 'regional_2threads_intel' [06:05, 03:44](1003 MB) -PASS -- TEST 'regional_noquilt_intel' [08:13, 05:46](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:14, 06:03](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:38](870 MB) -PASS -- TEST 'regional_wofs_intel' [09:08, 07:06](1608 MB) - -PASS -- COMPILE 'rrfs_intel' [10:27, 08:34] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:27, 04:26](1020 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:36, 04:36](1216 MB) -PASS -- TEST 'rap_decomp_intel' [07:29, 04:38](1016 MB) -PASS -- TEST 'rap_2threads_intel' [06:59, 03:49](1095 MB) -PASS -- TEST 'rap_restart_intel' [05:59, 02:34](773 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:54, 04:13](1020 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:48, 04:25](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 02:40](772 MB) -PASS -- TEST 'hrrr_control_intel' [07:45, 04:09](1011 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 04:19](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 03:34](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:01, 02:31](765 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:20, 07:29](1014 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:59, 09:49](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:05, 09:22](1969 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 08:02] -PASS -- TEST 'control_csawmg_intel' [11:06, 07:35](960 MB) -PASS -- TEST 'control_ras_intel' [05:37, 03:33](675 MB) - -PASS -- COMPILE 'wam_intel' [09:28, 07:57] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:36, 12:36](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:06] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:46, 03:32](1864 MB) -PASS -- TEST 'regional_control_faster_intel' [08:29, 05:40](871 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:24, 04:52] ( 887 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:51](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:03, 03:01](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:48, 03:37](826 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:02, 03:21](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:26, 05:30](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [06:39, 03:59](835 MB) -PASS -- TEST 'control_diag_debug_intel' [05:54, 03:30](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [07:02, 03:48](1906 MB) -PASS -- TEST 'regional_debug_intel' [21:18, 18:55](934 MB) -PASS -- TEST 'rap_control_debug_intel' [08:48, 05:57](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:00, 05:34](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:43, 05:52](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:44, 05:55](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:55, 05:27](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:08, 06:06](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:53, 05:55](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:45, 05:50](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:39, 05:59](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:49, 05:41](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:00, 05:35](1199 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:55, 05:41](1200 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:59, 09:04](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:52, 05:44](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:44, 05:48](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 09:33](1202 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:22, 03:46] ( 845 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:44, 14:27](1707 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 04:03](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 03:33](892 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:08, 03:26](891 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:53, 03:15](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:20, 03:16](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:37](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 02:04](733 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 01:58](730 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:56] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:45, 03:07](1021 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:32](1137 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:27, 02:59](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:25, 02:02](689 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 08:11] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:23, 04:33](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:10] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:03, 05:38](1079 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:05, 05:26](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [26:52, 23:57](1099 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 23:54](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:16, 13:42](1207 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [26:47, 24:23](1104 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:09, 23:53](1170 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:15] ( 779 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:58, 05:46](1111 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:55] ( 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:09, 05:43](708 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:46, 06:05](923 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:55, 03:48](1047 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 07:07](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:10, 12:12](805 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 13:34](819 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:45, 05:52](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:22, 07:17](478 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 03:17](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:56, 08:19](426 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:26, 04:13](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:53](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 04:47](551 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:46, 01:50](412 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:23, 04:12] ( 1481 warnings 1450 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:44, 14:10](649 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:30, 09:29] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:42, 07:35](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:40, 07:44](784 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:40] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 05:42](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:29, 09:31] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:05, 06:43](762 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:07, 06:41](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:45, 16:25](907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:30, 10:28] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:59, 04:26](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:29, 09:30] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:19, 04:44] ( 892 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:25, 08:19] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:16, 05:02](3238 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 05:12](3210 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:26](3218 MB) - -PASS -- COMPILE 'atmaq_intel' [09:29, 08:08] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:48, 16:52](2390 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [24:27, 19:42](2446 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:20, 03:58] ( 870 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:50, 41:01](1875 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:33, 11:54] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:02, 08:07](3348 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gefs_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:33, 13:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:28, 20:40](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:10, 23:43](1948 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [18:21, 08:41](1073 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:55, 08:48](1931 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:26, 22:36](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:33, 12:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:53, 19:46](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:24, 04:58] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:50, 20:32](1953 MB) + +PASS -- COMPILE 's2swa_intel' [14:33, 12:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:59, 12:46](3382 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:24, 13:36](3382 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:27, 14:34](3263 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:44, 10:20](3409 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:32, 08:32](3291 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:09, 09:19](3621 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:58, 12:00](3374 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:07, 10:27](3330 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:52, 11:09](3381 MB) + +PASS -- COMPILE 's2swal_intel' [14:32, 12:57] ( 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:34, 11:28](3339 MB) + +PASS -- COMPILE 's2sw_intel' [13:32, 12:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:39, 05:21](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:33, 09:28](1967 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:32, 10:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:32, 05:24](1980 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:37, 15:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:57, 15:29](3385 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:34, 12:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:27, 21:43](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:14, 09:26](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:21, 24:10](1894 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [12:00, 07:59](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:45, 03:03](2894 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [08:13, 04:46](2311 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:07, 01:52](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:06, 01:26](2113 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:12, 01:42](1488 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:08, 02:02](2107 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:06, 01:43](2110 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:42, 01:42](1488 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:04, 01:41](2039 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:05, 01:26](2039 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:19, 01:45](1395 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:01] ( 1534 warnings 1946 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:01, 25:26](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:38, 09:59] ( 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:31, 07:16](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:09](1578 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:21, 03:34](1588 MB) +PASS -- TEST 'control_latlon_intel' [08:42, 06:02](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:52, 04:43](1585 MB) +PASS -- TEST 'control_c48_intel' [10:07, 08:02](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:27, 08:15](723 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:10, 07:17](1601 MB) +PASS -- TEST 'control_c192_intel' [20:35, 11:46](1708 MB) +PASS -- TEST 'control_c384_intel' [25:21, 18:51](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [29:09, 18:07](1182 MB) +PASS -- TEST 'control_stochy_intel' [06:18, 03:24](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:41, 01:46](408 MB) +PASS -- TEST 'control_lndp_intel' [05:10, 02:57](647 MB) +PASS -- TEST 'control_iovr4_intel' [07:11, 04:03](636 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:45, 04:14](918 MB) +PASS -- TEST 'control_iovr5_intel' [07:38, 02:58](638 MB) +PASS -- TEST 'control_p8_intel' [09:29, 04:21](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:17, 06:24](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:37, 05:53](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:15, 06:08](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [14:43, 07:12](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:40, 05:30](2439 MB) +PASS -- TEST 'control_restart_p8_intel' [11:21, 05:08](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:26, 06:05](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:10, 02:31](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:55, 17:53](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:08, 04:40](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:42, 08:04](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:52, 09:27](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:20, 05:57](1876 MB) +PASS -- TEST 'merra2_thompson_intel' [13:07, 04:38](1869 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [12:48, 07:20](1876 MB) +PASS -- TEST 'regional_control_intel' [14:25, 10:35](872 MB) +PASS -- TEST 'regional_restart_intel' [06:14, 03:56](882 MB) +PASS -- TEST 'regional_decomp_intel' [15:38, 12:12](873 MB) +PASS -- TEST 'regional_2threads_intel' [09:07, 05:39](987 MB) +PASS -- TEST 'regional_noquilt_intel' [12:21, 08:47](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:18, 07:21](879 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:48, 06:35](870 MB) +PASS -- TEST 'regional_wofs_intel' [13:21, 09:15](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [11:29, 08:34] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [14:43, 10:04](1020 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:17, 04:57](1206 MB) +PASS -- TEST 'rap_decomp_intel' [11:25, 04:57](1017 MB) +PASS -- TEST 'rap_2threads_intel' [10:05, 04:22](1095 MB) +PASS -- TEST 'rap_restart_intel' [08:18, 02:32](773 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:33, 05:21](1019 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:06, 05:32](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:58, 03:16](772 MB) +PASS -- TEST 'hrrr_control_intel' [08:41, 04:40](1011 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 04:34](1008 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:46, 04:03](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:53, 03:24](763 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:58, 08:16](1014 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:11, 16:18](1975 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:36, 11:44](1966 MB) + +PASS -- COMPILE 'csawmg_intel' [10:35, 07:57] +PASS -- TEST 'control_csawmg_intel' [15:25, 12:33](959 MB) +PASS -- TEST 'control_ras_intel' [06:58, 03:48](673 MB) + +PASS -- COMPILE 'wam_intel' [11:29, 09:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [23:43, 19:42](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:28, 08:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:16, 03:32](1864 MB) +PASS -- TEST 'regional_control_faster_intel' [10:09, 06:28](870 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:29, 04:47] ( 887 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:22, 05:23](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:08, 04:37](1621 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:39, 04:03](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:49, 03:35](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:55, 05:52](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [06:47, 03:56](833 MB) +PASS -- TEST 'control_diag_debug_intel' [07:32, 03:34](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [08:00, 03:51](1910 MB) +PASS -- TEST 'regional_debug_intel' [23:48, 20:57](947 MB) +PASS -- TEST 'rap_control_debug_intel' [09:34, 06:08](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:21, 06:14](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:24, 06:33](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:28, 06:32](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:40, 06:00](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:33, 06:28](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:01, 06:46](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:07, 10:53](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:43, 10:18](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:14, 07:47](1202 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:58, 06:11](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:12, 07:06](1200 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:56, 10:18](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:22, 08:12](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:48, 10:03](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:01, 10:43](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:27, 03:29] ( 845 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:39, 16:35](1707 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:31, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:42, 08:47](1029 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:18, 07:02](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:17, 07:59](891 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:21, 12:38](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:58, 07:31](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:03, 05:43](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:02, 02:14](736 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:00, 02:27](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:33, 08:26] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:03, 05:55](1022 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:59, 02:30](1136 MB) +PASS -- TEST 'conus13km_decomp_intel' [09:20, 05:12](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [05:40, 02:14](689 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:33, 09:35] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:59, 08:13](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:36] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:16, 07:29](1078 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:47, 07:16](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [29:29, 24:43](1098 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [29:30, 25:03](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:12, 13:29](1198 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:20, 24:42](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:37, 25:00](1170 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 05:52] ( 779 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:11, 05:46](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [12:27, 11:09] ( 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:56, 08:22](708 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [12:19, 08:02](919 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:51, 06:19](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:00, 10:02](763 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:02, 12:46](806 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:14, 14:52](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:36, 08:08](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:07, 08:56](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:29, 04:15](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:52, 09:32](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:48, 04:16](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:59, 04:12](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:59, 05:32](546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:51, 02:12](410 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:22, 06:11] ( 1481 warnings 1450 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:48, 16:34](659 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:31, 10:56] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:57, 10:42](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 12:12](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:40, 10:27] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:39, 09:05](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:30, 09:45] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:03, 07:57](764 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:59, 10:00](742 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:09, 23:22](834 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:29, 11:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:57, 08:33](1911 MB) + +PASS -- COMPILE 'atml_intel' [12:30, 10:41] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [11:31, 09:20] ( 892 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:26, 09:19] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [16:22, 09:58](3237 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [16:06, 10:21](3209 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:44, 08:55](3218 MB) + +PASS -- COMPILE 'atmaq_intel' [11:30, 09:38] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [23:29, 17:40](2393 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [27:42, 21:00](2444 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:40, 05:01] ( 870 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:52, 40:53](1859 MB) SYNOPSIS: -Starting Date/Time: 20250929 15:41:51 -Ending Date/Time: 20250929 17:35:00 -Total Time: 01h:54m:30s +Starting Date/Time: 20250930 19:09:54 +Ending Date/Time: 20250930 22:10:02 +Total Time: 03h:01m:39s Compiles Completed: 34/34 -Tests Completed: 176/176 +Tests Completed: 174/176 +Failed Tests: +* TEST cpld_control_gefs_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/BrianCurtis-NOAA/ufs-weather-model/zstd_netcdf/tests/logs/log_wcoss2/run_cpld_control_gefs_intel.log +* 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 WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +8d64b97cf8582682b633580fd051ef17f4064293 + +Submodule hashes used in testing: + 5d19f593987dbf5609ad929956bdae3055a5a82f AQM (v0.2.0-44-g5d19f59) + 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) + 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) + 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) + 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 374373588e22cd86f1b8eb670d489c2967a6b40a CMEPS-interface/CMEPS (cmeps_v0.4.1-2324-g3743735) + 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + fe9e7bfdc8792ff875e332914871ac16dee09120 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10722-gfe9e7bfdc) + 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 8fe108a4c522da15474c9f954266782b4cb56951 NOAHMP-interface/noahmp (v3.7.1-460-g8fe108a) + a19dcd8878e117d421e9634d8640a446f2d3f2d4 UFSATM (remotes/origin/HEAD) + 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) + fff3c24e4963687ca20799c4a1f9f7078c07d439 UFSATM/ccpp/physics (EP4-1865-gfff3c24e) + c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 7e24e739182281717607b341a1c2ffdba473616f UFSATM/fv3/atmos_cubed_sphere (201912_public_release-424-g7e24e73) + 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/feature/mpas-in-ufs) + 8f6caa9d04f1caf2ca8ce1b362aedcebf9b14c8c UFSATM/upp (upp_v10.2.0-297-g8f6caa9d) +-179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd +-3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd + 89710b75ef76f5fe64e96307efa3c98e119caa5d WW3 (6.07.1-485-g89710b75) + 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-20250930 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_579639 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: cpld_restart_gefs +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 12:08] ( 3 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [35:35, 19:04](4113 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [29:12, 10:43](3912 MB) + +SYNOPSIS: +Starting Date/Time: 20251001 01:38:53 +Ending Date/Time: 20251001 02:58:22 +Total Time: 01h:20m:11s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/model_configure_atmaq.IN b/tests/parm/model_configure_atmaq.IN index f28f81da55..805773be36 100644 --- a/tests/parm/model_configure_atmaq.IN +++ b/tests/parm/model_configure_atmaq.IN @@ -8,6 +8,7 @@ nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] write_dopost: @[WRITE_DOPOST] +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] quantize_mode: 'quantize_bitround' quantize_nsd: @[QUANTIZE_NSD] diff --git a/tests/parm/model_configure_fire.IN b/tests/parm/model_configure_fire.IN index 61fe2986a7..80b8078f67 100644 --- a/tests/parm/model_configure_fire.IN +++ b/tests/parm/model_configure_fire.IN @@ -14,6 +14,7 @@ memuse_verbose: .false. restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. write_dopost: @[WRITE_DOPOST] +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] nbits: 0 ichunk2d: -1 diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 5408507b7e..73de3b5d0f 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -21,6 +21,7 @@ jchunk2d: -1 ichunk3d: -1 jchunk3d: -1 kchunk3d: -1 +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] quantize_mode: 'quantize_bitround' quantize_nsd: @[QUANTIZE_NSD] diff --git a/tests/parm/model_configure_regional_rrfs_a.IN b/tests/parm/model_configure_regional_rrfs_a.IN index bfe5b89802..16938bdda4 100644 --- a/tests/parm/model_configure_regional_rrfs_a.IN +++ b/tests/parm/model_configure_regional_rrfs_a.IN @@ -9,6 +9,8 @@ dt_atmos: 60 cpl: .false. restart_interval: @[RESTART_INTERVAL] quilting: @[QUILTING] +zstandard_level: @[ZSTANDARD_LEVEL] +ideflate: @[IDEFLATE] # diff --git a/tests/parm/model_configure_regional_stoch.IN b/tests/parm/model_configure_regional_stoch.IN index 64928e436f..21226fe47a 100644 --- a/tests/parm/model_configure_regional_stoch.IN +++ b/tests/parm/model_configure_regional_stoch.IN @@ -18,6 +18,7 @@ write_dopost: @[WRITE_DOPOST] num_files: 2 filename_base: 'dyn' 'phy' output_file: @[OUTPUT_FILE] +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] output_grid: 'lambert_conformal' diff --git a/tests/parm/model_configure_rrfs_conus13km.IN b/tests/parm/model_configure_rrfs_conus13km.IN index 792afa352f..97b95f17b0 100644 --- a/tests/parm/model_configure_rrfs_conus13km.IN +++ b/tests/parm/model_configure_rrfs_conus13km.IN @@ -19,6 +19,7 @@ write_dopost: @[WRITE_DOPOST] num_files: @[NUM_FILES] filename_base: @[FILENAME_BASE] output_file: @[OUTPUT_FILE] +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] quantize_mode: 'quantize_bitround' quantize_nsd: @[QUANTIZE_NSD] diff --git a/tests/test_changes.list b/tests/test_changes.list index 8a7b8144dd..bcfb6acc34 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,101 +1,6 @@ -cpld_control_p8_mixedmode intel -cpld_control_gefs intel -cpld_restart_gefs intel -cpld_dcp_gefs intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_restart_gfsv17_iau intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_control_p8_lnd intel -cpld_restart_p8_lnd intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_p8_faster intel cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel -cpld_control_c48_5deg intel -cpld_warmstart_c48_5deg intel -cpld_restart_c48_5deg intel cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c48_lnd_iau intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_p8_ugwpv1_tempo intel -control_p8_ugwpv1_tempo_aerosol intel -control_p8_ugwpv1_tempo_aerosol_hail intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -merra2_hf_thompson intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_wam intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -conus13km_debug intel -gnv1_nested intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -rrfs_v1beta gnu -control_diag_debug gnu -control_debug_p8 gnu -gnv1_c96_no_nest_debug gnu -control_wam_debug gnu -cpld_control_p8 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_debug_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/control_c768 b/tests/tests/control_c768 index 4a3568c2ab..0e6d6aa926 100644 --- a/tests/tests/control_c768 +++ b/tests/tests/control_c768 @@ -46,7 +46,7 @@ export IAER=5111 export IOVR=3 export IMO=3072 export JMO=1536 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export QUANTIZE_NSD=14 export ICHUNK3D=${IMO} export JCHUNK3D=${JMO} diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index d7411f4860..87cfebdc4e 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -98,7 +98,5 @@ export SATMEDMF=.true. export K_SPLIT=2 export N_SPLIT=4 +export ZSTANDARD_LEVEL=5 -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 94c3556c15..6b5a838158 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -68,7 +68,7 @@ export RESTART_INTERVAL="12 -1" export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' - +export QUILTING_RESTART=.false. export IALB=2 export IEMS=2 export IOPT_DVEG=4 @@ -139,7 +139,4 @@ export SATMEDMF=.true. export K_SPLIT=2 export N_SPLIT=4 - -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index 1482a0068b..717eee36a8 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -151,7 +151,4 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index b77a683caf..acd7e41b49 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -60,6 +60,7 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export FHROT=12 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export QUILTING_RESTART=.false. export WARM_START=.true. export NGGPS_IC=.false. @@ -138,3 +139,5 @@ export K_SPLIT=2 export N_SPLIT=4 export SATMEDMF=.true. +export ZSTANDARD_LEVEL=5 + diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd index ad7b31aedb..a86b160740 100644 --- a/tests/tests/control_restart_p8_atmlnd +++ b/tests/tests/control_restart_p8_atmlnd @@ -75,3 +75,4 @@ else export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" export lnd_fixed_dir="INPUT/${LNDRES}/" fi +export ZSTANDARD_LEVEL=0 diff --git a/tests/tests/control_wam b/tests/tests/control_wam index b829fa03b9..c57d8e7234 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -105,11 +105,9 @@ export FIELD_TABLE=field_table_wam_noaer export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN +export ZSTANDARD_LEVEL=5 -if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi if [[ $MACHINE_ID = hera ]]; then - WLCLK=45 + export WLCLK=45 fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index c52d742268..8600ee97d1 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -107,6 +107,4 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index 36d3f59533..3d831cbb2a 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -34,7 +34,7 @@ export WRITE_DOPOST=.true. export IAER=5111 export IOVR=3 export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export QUANTIZE_NSD=14 export K_SPLIT=2 diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index de4cbd882a..272ad9457a 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -30,7 +30,7 @@ export NSTF_NAME='2,0,0,0,0' export IAER=5111 export IOVR=3 export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" diff --git a/tests/tests/conus13km_2threads b/tests/tests/conus13km_2threads index 36a515a0b9..9b97043b28 100644 --- a/tests/tests/conus13km_2threads +++ b/tests/tests/conus13km_2threads @@ -23,9 +23,6 @@ export atm_omp_num_threads=2 export QUILTING_RESTART=.false. export USE_MERRA2=.true. -ESMF_THREADING=false -THRD=$atm_omp_num_threads - -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ESMF_THREADING=false +export THRD=$atm_omp_num_threads +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/conus13km_control b/tests/tests/conus13km_control index 5b4bcb4f12..59cae6bb02 100644 --- a/tests/tests/conus13km_control +++ b/tests/tests/conus13km_control @@ -30,6 +30,4 @@ export RESTART_INTERVAL=1 export QUILTING_RESTART=.false. export USE_MERRA2=.true. -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/conus13km_decomp b/tests/tests/conus13km_decomp index 3674882354..f358407bd0 100644 --- a/tests/tests/conus13km_decomp +++ b/tests/tests/conus13km_decomp @@ -24,7 +24,4 @@ export INPES=8 export JNPES=10 export QUILTING_RESTART=.false. export USE_MERRA2=.true. - -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/conus13km_restart b/tests/tests/conus13km_restart index 0d8488eb6b..9a7cf675ee 100644 --- a/tests/tests/conus13km_restart +++ b/tests/tests/conus13km_restart @@ -20,7 +20,4 @@ export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR export RRFS_RESTART=YES export QUILTING_RESTART=.false. export USE_MERRA2=.true. - -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 0fa96beaec..ff4c1a0359 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -67,7 +67,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3.nc \ - 20210323.060000.out_grd.ww3 " + 20210323.060000.out_grd.ww3.nc " export DT_ATMOS=720 export_fv3 @@ -123,3 +123,6 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +#output WW3 history files directly in netcdf format +export WW3_historync='true' diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index d8b15b5efb..30d2dc83ff 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -55,7 +55,7 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3.nc \ - 20210322.090000.out_grd.ww3 " + 20210322.090000.out_grd.ww3.nc " export_fv3 export_ugwpv1 @@ -126,3 +126,6 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +#output WW3 history files directly in netcdf format +export WW3_historync='true' diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 1d944ed5af..83ebe6f59b 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -67,7 +67,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3.nc \ - 20210323.060000.out_grd.ww3 " + 20210323.060000.out_grd.ww3.nc " export DT_ATMOS=720 export_fv3 export_ugwpv1 @@ -121,3 +121,6 @@ fi if [[ $MACHINE_ID = wcoss2 ]]; then WLCLK=50 fi + +#output WW3 history files directly in netcdf format +export WW3_historync='true' diff --git a/tests/tests/cpld_regional_atm_fbh b/tests/tests/cpld_regional_atm_fbh index 8e995d5a43..ce3d7c7b76 100644 --- a/tests/tests/cpld_regional_atm_fbh +++ b/tests/tests/cpld_regional_atm_fbh @@ -48,7 +48,6 @@ export NUM_FILES=2 export FILENAME_BASE="'dyn' 'phy'" export OUTPUT_FILE="'netcdf' 'netcdf'" export WRITE_DOPOST=.false. -export IDEFLATE=0 export OUTPUT_GRID="'lambert_conformal'" export CEN_LON=-105.6041 export CEN_LAT=39.01736 diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 882375dbb3..6a42a5a287 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -55,7 +55,7 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3.nc \ - 20210323.060000.out_grd.ww3 " + 20210323.060000.out_grd.ww3.nc " export DT_ATMOS=720 export_fv3 export_ugwpv1 @@ -118,3 +118,6 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +#output WW3 history files directly in netcdf format +export WW3_historync='true' diff --git a/tests/tests/dependency_unmet b/tests/tests/dependency_unmet index 9e2014a852..8410666e90 100644 --- a/tests/tests/dependency_unmet +++ b/tests/tests/dependency_unmet @@ -81,6 +81,4 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/fail_to_run b/tests/tests/fail_to_run index 65f7f7770e..d37f0099b4 100644 --- a/tests/tests/fail_to_run +++ b/tests/tests/fail_to_run @@ -84,6 +84,4 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export ZSTANDARD_LEVEL=5 diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested index 96c131f4eb..a2ebb22a02 100644 --- a/tests/tests/gnv1_nested +++ b/tests/tests/gnv1_nested @@ -83,7 +83,7 @@ export WRITE_NSFLIP=.true. export FILENAME_BASE="'atm' 'sfc'" export OUTPUT_GRID=gaussian_grid export OUTPUT_FILE="'netcdf' 'netcdf'" -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export ICHUNK2D=-1 export JCHUNK2D=-1 export ICHUNK3D=-1 diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index fef76044e1..9e7815a804 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -62,7 +62,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index 9c1a0a530c..1ec57a7ca0 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -96,7 +96,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_global_storm_following_1nest_atm b/tests/tests/hafs_global_storm_following_1nest_atm index 00bf0ca217..ed58b51cee 100644 --- a/tests/tests/hafs_global_storm_following_1nest_atm +++ b/tests/tests/hafs_global_storm_following_1nest_atm @@ -22,7 +22,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index e032112d5c..91c1caa1d5 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -36,7 +36,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm index bc75d82dc4..b83c6f86f1 100644 --- a/tests/tests/hafs_regional_atm +++ b/tests/tests/hafs_regional_atm @@ -20,7 +20,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn index 7ec5159cdc..437c476b14 100644 --- a/tests/tests/hafs_regional_atm_ocn +++ b/tests/tests/hafs_regional_atm_ocn @@ -23,7 +23,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 31368970e1..212298b866 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -25,7 +25,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_atm_thompson_gfdlsf b/tests/tests/hafs_regional_atm_thompson_gfdlsf index 2eb8f0399e..5774df204f 100644 --- a/tests/tests/hafs_regional_atm_thompson_gfdlsf +++ b/tests/tests/hafs_regional_atm_thompson_gfdlsf @@ -20,7 +20,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 export DT_INNER=${DT_ATMOS} -export IDEFLATE=0 +export ZSTANDARD_LEVEL=0 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 4256700021..ab558ead0a 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -23,7 +23,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_docn b/tests/tests/hafs_regional_docn index cf63e3c3e2..6514198369 100644 --- a/tests/tests/hafs_regional_docn +++ b/tests/tests/hafs_regional_docn @@ -23,7 +23,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst index 5daf17b36d..3f6efb2ff0 100644 --- a/tests/tests/hafs_regional_docn_oisst +++ b/tests/tests/hafs_regional_docn_oisst @@ -23,7 +23,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm index c97013a787..375260a072 100644 --- a/tests/tests/hafs_regional_specified_moving_1nest_atm +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -23,7 +23,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm index 86bcd9a155..275f21fa61 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -36,7 +36,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn index ea93a7bcbd..d798781e65 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn @@ -23,7 +23,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug index b10833a4f4..e597dd29b8 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug @@ -21,7 +21,7 @@ export HAFS=true export FHMAX=1 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='1 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav index f725cf088d..64b5359003 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav @@ -25,7 +25,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline index 2ac049b3e5..efae392c87 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline @@ -25,7 +25,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 index 7ed250047c..16061116fb 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -25,7 +25,7 @@ export HAFS=true export FHMAX=3 export RESTART_N=${FHMAX} export DT_ATMOS=180 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/hafs_regional_telescopic_2nests_atm b/tests/tests/hafs_regional_telescopic_2nests_atm index b2dbfbab9c..3dec5bf90c 100644 --- a/tests/tests/hafs_regional_telescopic_2nests_atm +++ b/tests/tests/hafs_regional_telescopic_2nests_atm @@ -23,7 +23,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 diff --git a/tests/tests/regional_control b/tests/tests/regional_control index ffd4a73df7..d2e00fd592 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -40,13 +40,13 @@ export FHMAX=6 export INPES=10 export JNPES=11 export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=10 +export NTILES=1 if [[ ${MACHINE_ID} = ursa ]]; then - TPN=192 + export TPN=192 fi if [[ $MACHINE_ID = orion ]]; then - WLCLK=40 + export WLCLK=40 fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index c0ec9c9d25..42879fc86f 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -33,22 +33,19 @@ export FHMAX=1 export INPES=10 export JNPES=11 export OUTPUT_FH="0 1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 - -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=10 +export NTILES=1 +export ZSTANDARD_LEVEL=5 if [[ $MACHINE_ID = gaeac5 && $RT_COMPILER = intelllvm ]]; then - WLCLK=50 + export WLCLK=50 fi if [[ $MACHINE_ID = gaeac6 && $RT_COMPILER = intelllvm ]]; then - WLCLK=50 + export WLCLK=50 fi if [[ $MACHINE_ID = derecho ]]; then - WLCLK=50 + export WLCLK=50 fi diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index 13065d2da8..81dc9d99a0 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -28,7 +28,7 @@ export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" -export IDEFLATE=1 +export ZSTANDARD_LEVEL=5 export WLCLK=15 export FHMAX=6 diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index c09332019e..b6af696b9f 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -42,7 +42,7 @@ export FHMAX=6 export INPES=10 export JNPES=11 export OUTPUT_FH="4 6" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=10 +export NTILES=1 export FHROT=3 diff --git a/tests/tests/rrfs_v1beta b/tests/tests/rrfs_v1beta index 0e64a52624..394cddce20 100644 --- a/tests/tests/rrfs_v1beta +++ b/tests/tests/rrfs_v1beta @@ -56,7 +56,5 @@ export LIST_FILES="sfcf000.nc \ export_rrfs_v1 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' +export ZSTANDARD_LEVEL=5 -if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then - ZSTANDARD_LEVEL=5 -fi From 4bee7518483e7c0fc2e73c6f5fad7c507962c44c Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 2 Oct 2025 13:10:16 -0400 Subject: [PATCH 34/39] Add noahmp and UFSATM hashes // Add Spack CI #2654 // PR Project Board Label Updates #2902 (#2913) * UFSWM - Fix Atmos%iau_offset bug, remove goto statements from noahmp, add spack ci, and add changes to PR proj board * UFSATM - Set Atmos%iau_offset to iau_offset in module_fcst_grid_comp * NOAHMP - Remove goto statements and remove leftover debug write statement --------- Co-authored-by: gspetro-NOAA Co-authored-by: Alexander Richert --- .github/pull_request_template.md | 6 +- .github/workflows/Spack.yml | 75 ++ ...ect_update.yaml => add_pr_to_project.yaml} | 3 +- .github/workflows/superlinter.yml | 2 +- .github/workflows/update_project_labels.yaml | 86 ++ NOAHMP-interface/noahmp | 2 +- UFSATM | 2 +- ci/README | 3 + ci/package.py | 235 +++++ doc/UsersGuide/source/Acronyms.rst | 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 | 564 +++++------ tests/logs/RegressionTests_gaeac6.log | 584 ++++++------ tests/logs/RegressionTests_hera.log | 826 ++++++++-------- tests/logs/RegressionTests_hercules.log | 863 +++++++++-------- tests/logs/RegressionTests_orion.log | 618 ++++++------ tests/logs/RegressionTests_ursa.log | 888 +++++++++--------- tests/logs/RegressionTests_wcoss2.log | 543 ++++++----- tests/test_changes.list | 9 +- 22 files changed, 2939 insertions(+), 2476 deletions(-) create mode 100644 .github/workflows/Spack.yml rename .github/workflows/{pr_project_update.yaml => add_pr_to_project.yaml} (90%) create mode 100644 .github/workflows/update_project_labels.yaml create mode 100644 ci/README create mode 100644 ci/package.py diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f3fa263689..75ac4cd5d2 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. Commit `test_changes.list`, even if it is empty. - [ ] Fill out all sections of this template. --- @@ -68,7 +68,7 @@ Add the related UFS WM Github Issue here: