diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index da4be3feb9..ba3be280e4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,27 +8,33 @@ assignees: '' --- ## Description + ### To Reproduce: + ## Additional context + ## Output - + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 89fc5a8501..89226c64ba 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,15 +8,22 @@ assignees: '' --- ## Description + ## Solution + ## Alternatives + ## Related to -Directly reference any issues or PRs in this or other repositories that this is related to, and describe how they are related. Example: + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 87897d0183..afbcb30329 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,52 +1,80 @@ -# PR Checklist - -- [ ] This PR is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR. Please consult the ufs-weather-model [wiki](https://github.com/ufs-community/ufs-weather-model/wiki/Making-code-changes-in-the-UFS-weather-model-and-its-subcomponents) if you are unsure how to do this. - -- [ ] This PR has been tested using a branch which is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR - -- [ ] An Issue describing the work contained in this PR has been created either in the subcomponent(s) or in the ufs-weather-model. The Issue should be created in the repository that is most relevant to the changes in contained in the PR. The Issue and the dependent sub-component PR -are specified below. - -- [ ] Results for one or more of the regression tests change and the reasons for the changes are understood and explained below. - -- [ ] New or updated input data is required by this PR. If checked, please work with the code managers to update input data sets on all platforms. - -## Instructions: All subsequent sections of text should be filled in as appropriate. - -The information provided below allows the code managers to understand the changes relevant to this PR, whether those changes are in the ufs-weather-model repository or in a subcomponent repository. Ufs-weather-model code managers will use the information provided to add any applicable labels, assign reviewers and place it in the Commit Queue. Once the PR is in the Commit Queue, it is the PR owner's responsibility to keep the PR up-to-date with the develop branch of ufs-weather-model. - ## Description - + + +### Top of commit queue on: TBD + + +### Input data additions/changes +- [ ] No changes are expected to input data. +- [ ] There will be new input data. +- [ ] Input data will be updated. + +### Anticipated changes to regression tests: +- [ ] No changes are expected to any regression test. +- [ ] Changes are expected to the following tests: + + +## Subcomponents involved: +- [ ] AQM +- [ ] CDEPS +- [ ] CICE +- [ ] CMEPS +- [ ] CMakeModules +- [ ] FV3 +- [ ] GOCART +- [ ] HYCOM +- [ ] MOM6 +- [ ] NOAHMP +- [ ] WW3 +- [ ] stochastic_physics +- [ ] none + +### Combined with PR's (If Applicable): + +## Commit Queue Checklist: + +- [ ] Link PR's from all sub-components involved +- [ ] Confirm reviews completed in sub-component PR's +- [ ] Add all appropriate labels to this PR. +- [ ] Run full RT suite on either Hera/Cheyenne with both Intel/GNU compilers +- [ ] Add list of any failed regression tests to "Anticipated changes to regression tests" section. + +## Linked PR's and Issues: + + +## Testing Day Checklist: + +- [ ] This PR is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR. +- [ ] Move new/updated input data on RDHPCS Hera and propagate input data changes to all supported systems. + +### Testing Log (for CM's): +- RDHPCS + - Intel + - [ ] Hera + - [ ] Orion + - [ ] Jet + - [ ] Gaea + - [ ] Cheyenne + - GNU + - [ ] Hera + - [ ] Cheyenne +- WCOSS2 + - [ ] Dogwood/Cactus + - [ ] Acorn +- CI + - [ ] Completed +- opnReqTest + - [ ] N/A + - [ ] Log attached to comment diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index c3871899a6..11f4172c18 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -8,9 +8,6 @@ env: app: Accept:application/vnd.github.v3+json base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs AUTH: ${{ secrets.GITHUB_TOKEN }} - aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} - no_instances: 10 - jobs: pre: @@ -26,17 +23,6 @@ jobs: path: ~/id_file key: helperid-${{ github.event.workflow_run.id }} - - name: Delete run-ci label - run: | - head_sha=${{ github.event.workflow_run.head_sha }} - url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY - pr_number=$(curl -sS -H $app $url/pulls \ - | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') - echo "pr_number is $pr_number" - curl -sS -X DELETE -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - $url/issues/$pr_number/labels/run-ci - - repocheck: name: Repo check runs-on: ubuntu-20.04 @@ -48,7 +34,6 @@ jobs: git clone -q ${{ github.event.workflow_run.head_repository.html_url }} . git checkout -q $head_sha git submodule -q update --init --recursive - cd ${{ github.workspace }}/tests/ci url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY pr_number=$(curl -sS -H $app $url/pulls \ @@ -58,7 +43,6 @@ jobs: echo "pr_uid is $pr_uid" comment="$(./repo_check.sh $pr_uid 2>/dev/null)" echo "comment is $comment" - if [[ -n $comment ]]; then curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' @@ -66,85 +50,4 @@ jobs: else echo -n "success" >~/repocheck_file fi - - - uses: actions/cache@v2 - with: - path: ~/repocheck_file - key: repocheck-${{ github.event.workflow_run.id }} - - - startrunner: - name: Start runners - needs: repocheck - runs-on: ubuntu-20.04 - outputs: - started: ${{ steps.ec2.outputs.started }} - - steps: - - uses: actions/checkout@v2 - - - name: Check all builds are complete and successful - id: current - run: | - cd ${{ github.workspace }}/tests/ci - eval url=$base_url/${{ github.event.workflow_run.id }}/jobs - b_r=$(echo -n $url | ./check_status.py build) - if [ $b_r == 'success' ]; then - echo "::set-output name=check::pass" - elif [ $b_r == 'failure' ]; then - echo "::set-output name=check::fail" - fi - - - name: Check all previous runs finish using ec2 - id: previous - if: steps.current.outputs.check == 'pass' - run: | - cd ${{ github.workspace }}/tests/ci - eval url=$base_url - echo -n $url | ./check_status.py ec2 ${{ github.run_id }} - - - uses: aws-actions/configure-aws-credentials@v1 - if: steps.current.outputs.check == 'pass' - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-east-1 - - - name: Start ec2 instances - id: ec2 - if: steps.current.outputs.check == 'pass' - run: | - no_stopped=0 - while [ $no_stopped -lt $no_instances ]; do - sleep 20 - no_stopped=$(aws ec2 describe-instances --instance-ids $aws_instance_id \ - | jq -r '.Reservations[].Instances[].State.Name' | grep stopped | wc -l) - echo "no_stopped: $no_stopped" - done - aws ec2 start-instances --instance-ids $aws_instance_id - echo "::set-output name=started::yes" - - - stoprunner: - name: Stop runners - needs: startrunner - runs-on: ubuntu-20.04 - if: needs.startrunner.outputs.started == 'yes' - - steps: - - uses: actions/checkout@v2 - - - name: Check all tests are complete - run: | - cd ${{ github.workspace }}/tests/ci - eval url=$base_url/${{ github.event.workflow_run.id }} - echo $url | ./check_status.py test - - - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-east-1 - - - name: Stop ec2 instances - run: aws ec2 stop-instances --instance-ids $aws_instance_id + diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 76fd23a1ac..94df20a235 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -35,153 +35,3 @@ jobs: if [[ $conclusion == "failure" ]]; then exit 1 fi - - - uses: actions/cache@v2 - with: - path: ~/repocheck_file - key: repocheck-${{ github.run_id }} - - - name: Set repocheck currency flag - id: check - run: | - repocheck_result=$(cat ~/repocheck_file) - if [[ $repocheck_result == success ]]; then - echo "::set-output name=current::yes" - elif [[ $repocheck_result == failure ]]; then - echo "::set-output name=current::no" - fi - - - setup: - name: Configure cases to run - needs: [repocheck] - runs-on: ubuntu-20.04 - if: needs.repocheck.outputs.current == 'yes' && github.event.label.name == 'run-ci' - - outputs: - bld: ${{ steps.parse.outputs.bld }} - test: ${{ steps.parse.outputs.test }} - img: ${{ steps.parse.outputs.img }} - - steps: - - uses: actions/checkout@v2 - - - name: Collect cases to run - id: parse - run: | - cd ${{ github.workspace }}/tests/ci - IFS='|'; parsed_output=( $(./setup.py) ) - bld_=${parsed_output[0]} - test_=${parsed_output[1]} - img_=ci-test-weather - - echo "::set-output name=bld::$bld_" - echo "::set-output name=test::$test_" - echo "::set-output name=img::$img_" - - echo "build set : $bld_" - echo "test set : $test_" - echo "image name: $img_" - echo "repocheck: ${{needs.repocheck.outputs.current}}" - - - build: - name: Build ${{ matrix.bld_set }} - needs: setup - runs-on: ubuntu-20.04 - - strategy: - fail-fast: false - matrix: ${{ fromJson(needs.setup.outputs.bld) }} - - steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - - name: Build - run: | - printf '{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json >/dev/null - sudo systemctl restart docker - sleep 10 - cd tests/ci && ./ci.sh -n ${{ matrix.name }} -b ${{ matrix.case }} - sudo docker image ls - - #- name: Free up disk space - # run: | - # sudo docker images --no-trunc --all --quiet --filter="dangling=true" | sudo xargs --no-run-if-empty docker rmi - - - uses: actions/upload-artifact@v2 - with: - name: ${{ matrix.bld_set }}.artifact - path: ~/fv3.tar.gz - - - wait: - name: Wait for ec2 instances to start - needs: build - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v2 - - - uses: actions/cache@v2 - with: - path: ~/id_file - key: helperid-${{ github.run_id }} - - - name: Check if ec2 instances started - run: | - cd ${{ github.workspace }}/tests/ci - helper_id=$(cat ~/id_file) - url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs/$helper_id/jobs - ec2_started=$(echo -n $url | ./check_status.py completion "Start runners") - if [ $ec2_started != 'success' ]; then - echo "ec2 instances did not start" - exit 1 - fi - - - utest: - name: Test ${{ matrix.test_set }} - needs: [setup,build,wait] - runs-on: self-hosted - #runs-on: ubuntu-20.04 - - strategy: - fail-fast: false - matrix: ${{ fromJson(needs.setup.outputs.test) }} - - steps: - - name: Clean up in case of left-over files - run: | - rm -rf ${{ github.workspace }} && mkdir -p ${{ github.workspace }} - docker ps -a --filter "name=my-container" | grep my-container >/dev/null 2>&1 \ - && docker rm my-container >/dev/null 2>&1 && d=$? || d=$? - - - uses: actions/checkout@v2 - with: - submodules: recursive - - - uses: actions/download-artifact@v2 - with: - name: ${{ matrix.artifact }}.artifact - path: ${{ github.workspace}}/tests - - - name: Run utest - run: | - cd ${{ github.workspace }}/tests && tar -xvzf fv3.tar.gz && rm -f fv3.tar.gz - cd ${{ github.workspace }}/tests/ci - ./ci.sh -n ${{ matrix.name }} -r ${{ matrix.case }} - - #- uses: actions/upload-artifact@v2 - # if: ${{ always() }} - # with: - # name: memory_stat_${{ matrix.test_set }} - # path: memory_stat - - #- name: Clean up - # if: ${{ always() }} - # run: | - #docker stop my-container && docker rm my-container - #docker volume rm DataVolume diff --git a/.github/workflows/save/aux._yml b/.github/workflows/save/aux._yml new file mode 100644 index 0000000000..b7082c2806 --- /dev/null +++ b/.github/workflows/save/aux._yml @@ -0,0 +1,150 @@ +name: Helpers +on: + workflow_run: + workflows: ["Pull Request Tests"] + types: + - requested +env: + app: Accept:application/vnd.github.v3+json + base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs + AUTH: ${{ secrets.GITHUB_TOKEN }} + aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} + no_instances: 10 + + +jobs: + pre: + name: Preprocess + runs-on: ubuntu-20.04 + +# steps: +# - name: Share helper id +# run: echo -n ${{ github.run_id }} >~/id_file +# +# - uses: actions/cache@v2 +# with: +# path: ~/id_file +# key: helperid-${{ github.event.workflow_run.id }} +# +# - name: Delete run-ci label +# run: | +# head_sha=${{ github.event.workflow_run.head_sha }} +# url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY +# pr_number=$(curl -sS -H $app $url/pulls \ +# | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') +# echo "pr_number is $pr_number" +# curl -sS -X DELETE -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ +# $url/issues/$pr_number/labels/run-ci + + + repocheck: + name: Repo check + runs-on: ubuntu-20.04 + + steps: + - name: Check up-to-dateness and post comment + run: | + head_sha=${{ github.event.workflow_run.head_sha }} + git clone -q ${{ github.event.workflow_run.head_repository.html_url }} . + git checkout -q $head_sha + git submodule -q update --init --recursive + + cd ${{ github.workspace }}/tests/ci + url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY + pr_number=$(curl -sS -H $app $url/pulls \ + | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') + echo "pr_number is $pr_number" + pr_uid=${{ github.event.workflow_run.head_repository.owner.login }} + echo "pr_uid is $pr_uid" + comment="$(./repo_check.sh $pr_uid 2>/dev/null)" + echo "comment is $comment" + + if [[ -n $comment ]]; then + curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' + echo -n "failure" >~/repocheck_file + else + echo -n "success" >~/repocheck_file + fi + + - uses: actions/cache@v2 + with: + path: ~/repocheck_file + key: repocheck-${{ github.event.workflow_run.id }} + + + startrunner: + name: Start runners + needs: repocheck + runs-on: ubuntu-20.04 + outputs: + started: ${{ steps.ec2.outputs.started }} + + steps: + - uses: actions/checkout@v2 + + - name: Check all builds are complete and successful + id: current + run: | + cd ${{ github.workspace }}/tests/ci + eval url=$base_url/${{ github.event.workflow_run.id }}/jobs + b_r=$(echo -n $url | ./check_status.py build) + if [ $b_r == 'success' ]; then + echo "::set-output name=check::pass" + elif [ $b_r == 'failure' ]; then + echo "::set-output name=check::fail" + fi + + - name: Check all previous runs finish using ec2 + id: previous + if: steps.current.outputs.check == 'pass' + run: | + cd ${{ github.workspace }}/tests/ci + eval url=$base_url + echo -n $url | ./check_status.py ec2 ${{ github.run_id }} + + - uses: aws-actions/configure-aws-credentials@v1 + if: steps.current.outputs.check == 'pass' + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Start ec2 instances + id: ec2 + if: steps.current.outputs.check == 'pass' + run: | + no_stopped=0 + while [ $no_stopped -lt $no_instances ]; do + sleep 20 + no_stopped=$(aws ec2 describe-instances --instance-ids $aws_instance_id \ + | jq -r '.Reservations[].Instances[].State.Name' | grep stopped | wc -l) + echo "no_stopped: $no_stopped" + done + aws ec2 start-instances --instance-ids $aws_instance_id + echo "::set-output name=started::yes" + + + stoprunner: + name: Stop runners + needs: startrunner + runs-on: ubuntu-20.04 + if: needs.startrunner.outputs.started == 'yes' + + steps: + - uses: actions/checkout@v2 + + - name: Check all tests are complete + run: | + cd ${{ github.workspace }}/tests/ci + eval url=$base_url/${{ github.event.workflow_run.id }} + echo $url | ./check_status.py test + + - uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Stop ec2 instances + run: aws ec2 stop-instances --instance-ids $aws_instance_id diff --git a/.github/workflows/save/build_test._yml b/.github/workflows/save/build_test._yml new file mode 100644 index 0000000000..76fd23a1ac --- /dev/null +++ b/.github/workflows/save/build_test._yml @@ -0,0 +1,187 @@ +name: Pull Request Tests +on: + pull_request: + branches: ['develop'] + types: ['labeled'] +env: + app: Accept:application/vnd.github.v3+json + + +jobs: + repocheck: + name: Check if repos are up to date + runs-on: ubuntu-20.04 + + outputs: + current: ${{ steps.check.outputs.current }} + + steps: + - uses: actions/checkout@v2 + + - name: Wait for caching source + run: sleep 30 + + - uses: actions/cache@v2 + with: + path: ~/id_file + key: helperid-${{ github.run_id }} + + - name: Wait until repocheck in aux is complete + run: | + helper_id=$(cat ~/id_file) + cd ${{ github.workspace }}/tests/ci + jobs_url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs/$helper_id/jobs + conclusion=$(echo $jobs_url | ./check_status.py completion "Repo check") + if [[ $conclusion == "failure" ]]; then + exit 1 + fi + + - uses: actions/cache@v2 + with: + path: ~/repocheck_file + key: repocheck-${{ github.run_id }} + + - name: Set repocheck currency flag + id: check + run: | + repocheck_result=$(cat ~/repocheck_file) + if [[ $repocheck_result == success ]]; then + echo "::set-output name=current::yes" + elif [[ $repocheck_result == failure ]]; then + echo "::set-output name=current::no" + fi + + + setup: + name: Configure cases to run + needs: [repocheck] + runs-on: ubuntu-20.04 + if: needs.repocheck.outputs.current == 'yes' && github.event.label.name == 'run-ci' + + outputs: + bld: ${{ steps.parse.outputs.bld }} + test: ${{ steps.parse.outputs.test }} + img: ${{ steps.parse.outputs.img }} + + steps: + - uses: actions/checkout@v2 + + - name: Collect cases to run + id: parse + run: | + cd ${{ github.workspace }}/tests/ci + IFS='|'; parsed_output=( $(./setup.py) ) + bld_=${parsed_output[0]} + test_=${parsed_output[1]} + img_=ci-test-weather + + echo "::set-output name=bld::$bld_" + echo "::set-output name=test::$test_" + echo "::set-output name=img::$img_" + + echo "build set : $bld_" + echo "test set : $test_" + echo "image name: $img_" + echo "repocheck: ${{needs.repocheck.outputs.current}}" + + + build: + name: Build ${{ matrix.bld_set }} + needs: setup + runs-on: ubuntu-20.04 + + strategy: + fail-fast: false + matrix: ${{ fromJson(needs.setup.outputs.bld) }} + + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + + - name: Build + run: | + printf '{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json >/dev/null + sudo systemctl restart docker + sleep 10 + cd tests/ci && ./ci.sh -n ${{ matrix.name }} -b ${{ matrix.case }} + sudo docker image ls + + #- name: Free up disk space + # run: | + # sudo docker images --no-trunc --all --quiet --filter="dangling=true" | sudo xargs --no-run-if-empty docker rmi + + - uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.bld_set }}.artifact + path: ~/fv3.tar.gz + + + wait: + name: Wait for ec2 instances to start + needs: build + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + + - uses: actions/cache@v2 + with: + path: ~/id_file + key: helperid-${{ github.run_id }} + + - name: Check if ec2 instances started + run: | + cd ${{ github.workspace }}/tests/ci + helper_id=$(cat ~/id_file) + url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs/$helper_id/jobs + ec2_started=$(echo -n $url | ./check_status.py completion "Start runners") + if [ $ec2_started != 'success' ]; then + echo "ec2 instances did not start" + exit 1 + fi + + + utest: + name: Test ${{ matrix.test_set }} + needs: [setup,build,wait] + runs-on: self-hosted + #runs-on: ubuntu-20.04 + + strategy: + fail-fast: false + matrix: ${{ fromJson(needs.setup.outputs.test) }} + + steps: + - name: Clean up in case of left-over files + run: | + rm -rf ${{ github.workspace }} && mkdir -p ${{ github.workspace }} + docker ps -a --filter "name=my-container" | grep my-container >/dev/null 2>&1 \ + && docker rm my-container >/dev/null 2>&1 && d=$? || d=$? + + - uses: actions/checkout@v2 + with: + submodules: recursive + + - uses: actions/download-artifact@v2 + with: + name: ${{ matrix.artifact }}.artifact + path: ${{ github.workspace}}/tests + + - name: Run utest + run: | + cd ${{ github.workspace }}/tests && tar -xvzf fv3.tar.gz && rm -f fv3.tar.gz + cd ${{ github.workspace }}/tests/ci + ./ci.sh -n ${{ matrix.name }} -r ${{ matrix.case }} + + #- uses: actions/upload-artifact@v2 + # if: ${{ always() }} + # with: + # name: memory_stat_${{ matrix.test_set }} + # path: memory_stat + + #- name: Clean up + # if: ${{ always() }} + # run: | + #docker stop my-container && docker rm my-container + #docker volume rm DataVolume diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 01decebec7..7cb0874d34 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 01decebec7bfe676c1c6dc567834ff1e7aa3c303 +Subproject commit 7cb0874d340fde8ef37c39b6ae4bf8aab524ea13 diff --git a/CMakeLists.txt b/CMakeLists.txt index acf1258066..2af40cae56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS MS2SWA) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -124,10 +124,10 @@ if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - elseif (APP MATCHES "^(MS2SWA)$") + elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|NG-GODAS)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMW|ATML|LND|S2S|S2SA|S2SW|S2SWA|S2SWAL|HAFS|HAFS-ALL|NG-GODAS)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMW|ATML|LND|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() diff --git a/FV3 b/FV3 index b334224e02..5e667bea39 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b334224e02d780fa2b0dca9d439e19dfbcae8c34 +Subproject commit 5e667bea3963371153a58fc32a2285367c840c0d diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index b9fd40f898..52c78c4ca4 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit b9fd40f8981d6dcc87de187c84d48aff7b27dd13 +Subproject commit 52c78c4ca432227ddb49545cc3e2260bb2abb87c diff --git a/WW3 b/WW3 index cec631c4c0..b93b9f0011 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit cec631c4c08addd547d4ef974ab212a24e81b92a +Subproject commit b93b9f00118f6fb316fd2289dff10b1455357f3f diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index d8073112ac..d02ea508e5 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -42,7 +42,7 @@ if(APP MATCHES "^(NG-GODAS)$") message("Configuring UFS app in (CDEPS) Data Atmosphere mode") endif() -if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|MS2SWA)$") +if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(APP_MSG "Configuring UFS app in S2S") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) @@ -50,11 +50,11 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|MS2SWA)$") set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "^(S2SW|S2SWA|S2SWAL|MS2SWA)") + if(APP MATCHES "^(S2SW|S2SWA|S2SWAL)") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Waves") endif() - if(APP MATCHES "^(S2SA|S2SWA|MS2SWA)") + if(APP MATCHES "^(S2SA|S2SWA)") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") endif() diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index bdbafd561a..e94b792f4f 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -42,6 +42,8 @@ MODULE UFSDriver Driver_label_SetRunSequence => label_SetRunSequence, & Driver_label_SetRunClock => label_SetRunClock use NUOPC_Connector, only: conSS => SetServices + use NUOPC_Model, only: SetVM + ! - Handle build time ATM options: #ifdef FRONT_FV3 use FRONT_FV3, only: FV3_SS => SetServices @@ -377,17 +379,8 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_HYCOM if (trim(model) == "hycom") then - !TODO: Remove bail code and pass info and SetVM to DriverAddComp - !TODO: once component supports threading. - if (ompNumThreads > 1) then - write (msg, *) "ESMF-aware threading NOT implemented for model: "//& - trim(model) - call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & - file=__FILE__, rcToReturn=rc) - return ! bail out - endif call NUOPC_DriverAddComp(driver, trim(prefix), HYCOM_SS, & - petList=petList, comp=comp, rc=rc) + SetVM, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index b119aa91f1..03829d8d55 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Jan 9 23:20:49 UTC 2023 +Thu Jan 19 20:09:15 UTC 2023 Start Regression test -Compile 001 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 309 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 006 elapsed time 385 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 311 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_c48 +Compile 007 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 308 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 674.802512 -0: The maximum resident set size (KB) = 702048 +0: The total amount of wall time = 684.803110 +0: The maximum resident set size (KB) = 699500 Test 001 control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_stochy +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 638.050107 - 0: The maximum resident set size (KB) = 475564 + 0: The total amount of wall time = 655.715789 + 0: The maximum resident set size (KB) = 479860 Test 002 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_ras +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 844.222533 - 0: The maximum resident set size (KB) = 483344 + 0: The total amount of wall time = 829.496209 + 0: The maximum resident set size (KB) = 485724 Test 003 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 920.781246 - 0: The maximum resident set size (KB) = 1233940 + 0: The total amount of wall time = 901.770387 + 0: The maximum resident set size (KB) = 1235120 Test 004 control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1506.596701 - 0: The maximum resident set size (KB) = 832560 + 0: The total amount of wall time = 1445.230949 + 0: The maximum resident set size (KB) = 827624 Test 005 rap_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1471.449392 - 0: The maximum resident set size (KB) = 833684 + 0: The total amount of wall time = 1439.337709 + 0: The maximum resident set size (KB) = 825400 Test 006 rap_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1494.497764 - 0: The maximum resident set size (KB) = 893300 + 0: The total amount of wall time = 1337.478961 + 0: The maximum resident set size (KB) = 895776 Test 007 rap_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.715809 - 0: The maximum resident set size (KB) = 546356 + 0: The total amount of wall time = 725.378345 + 0: The maximum resident set size (KB) = 541524 Test 008 rap_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_sfcdiff +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1493.284980 - 0: The maximum resident set size (KB) = 825412 + 0: The total amount of wall time = 1466.732853 + 0: The maximum resident set size (KB) = 831816 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_sfcdiff_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.305238 - 0: The maximum resident set size (KB) = 829168 + 0: The total amount of wall time = 1465.180673 + 0: The maximum resident set size (KB) = 829440 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_sfcdiff_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1071.748194 - 0: The maximum resident set size (KB) = 544788 + 0: The total amount of wall time = 1092.897962 + 0: The maximum resident set size (KB) = 544952 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1433.932637 - 0: The maximum resident set size (KB) = 831172 + 0: The total amount of wall time = 1417.533370 + 0: The maximum resident set size (KB) = 829216 Test 012 hrrr_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.080758 - 0: The maximum resident set size (KB) = 894196 + 0: The total amount of wall time = 1325.007062 + 0: The maximum resident set size (KB) = 887584 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1427.663988 - 0: The maximum resident set size (KB) = 829068 + 0: The total amount of wall time = 1411.273304 + 0: The maximum resident set size (KB) = 824192 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1072.744492 - 0: The maximum resident set size (KB) = 540484 + 0: The total amount of wall time = 1038.043621 + 0: The maximum resident set size (KB) = 540916 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_v1beta +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1504.765630 - 0: The maximum resident set size (KB) = 825548 + 0: The total amount of wall time = 1452.767196 + 0: The maximum resident set size (KB) = 820912 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 750.645637 - 0: The maximum resident set size (KB) = 634596 + 0: The total amount of wall time = 736.423662 + 0: The maximum resident set size (KB) = 635516 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 791.061726 - 0: The maximum resident set size (KB) = 649756 + 0: The total amount of wall time = 783.803249 + 0: The maximum resident set size (KB) = 647956 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 741.377970 - 0: The maximum resident set size (KB) = 639424 + 0: The total amount of wall time = 745.829959 + 0: The maximum resident set size (KB) = 635976 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1043.539082 - 0: The maximum resident set size (KB) = 634468 + 0: The total amount of wall time = 917.364780 + 0: The maximum resident set size (KB) = 634944 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.358138 - 0: The maximum resident set size (KB) = 531284 + 0: The total amount of wall time = 124.737178 + 0: The maximum resident set size (KB) = 530528 Test 021 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/regional_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 673.115432 - 0: The maximum resident set size (KB) = 586560 + 0: The total amount of wall time = 727.161330 + 0: The maximum resident set size (KB) = 590440 Test 022 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.595564 - 0: The maximum resident set size (KB) = 847584 + 0: The total amount of wall time = 174.349056 + 0: The maximum resident set size (KB) = 849412 Test 023 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.830925 - 0: The maximum resident set size (KB) = 838996 + 0: The total amount of wall time = 171.795042 + 0: The maximum resident set size (KB) = 846644 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.743066 - 0: The maximum resident set size (KB) = 931124 + 0: The total amount of wall time = 210.341587 + 0: The maximum resident set size (KB) = 929300 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.859906 - 0: The maximum resident set size (KB) = 842336 + 0: The total amount of wall time = 278.519283 + 0: The maximum resident set size (KB) = 843196 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_progcld_thompson_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.484046 - 0: The maximum resident set size (KB) = 845640 + 0: The total amount of wall time = 176.491404 + 0: The maximum resident set size (KB) = 852400 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_v1beta_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.454163 - 0: The maximum resident set size (KB) = 845408 + 0: The total amount of wall time = 175.720186 + 0: The maximum resident set size (KB) = 844592 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_ras_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.705231 - 0: The maximum resident set size (KB) = 481628 + 0: The total amount of wall time = 102.550137 + 0: The maximum resident set size (KB) = 489044 Test 029 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_stochy_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.403368 - 0: The maximum resident set size (KB) = 474464 + 0: The total amount of wall time = 119.046264 + 0: The maximum resident set size (KB) = 476648 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.869358 - 0: The maximum resident set size (KB) = 1235984 + 0: The total amount of wall time = 118.885158 + 0: The maximum resident set size (KB) = 1236048 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 565.918156 - 0: The maximum resident set size (KB) = 646544 + 0: The total amount of wall time = 542.064121 + 0: The maximum resident set size (KB) = 647200 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 574.615417 - 0: The maximum resident set size (KB) = 649092 + 0: The total amount of wall time = 531.752144 + 0: The maximum resident set size (KB) = 649032 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/control_wam_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 187.520219 - 0: The maximum resident set size (KB) = 189968 + 0: The total amount of wall time = 185.502870 + 0: The maximum resident set size (KB) = 194612 Test 034 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1481.362199 - 0: The maximum resident set size (KB) = 684220 + 0: The total amount of wall time = 1444.390030 + 0: The maximum resident set size (KB) = 689396 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 755.343120 - 0: The maximum resident set size (KB) = 682604 + 0: The total amount of wall time = 737.597024 + 0: The maximum resident set size (KB) = 683456 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1462.575880 - 0: The maximum resident set size (KB) = 729600 + 0: The total amount of wall time = 1312.776090 + 0: The maximum resident set size (KB) = 728084 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.484840 - 0: The maximum resident set size (KB) = 726824 + 0: The total amount of wall time = 690.372364 + 0: The maximum resident set size (KB) = 726096 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 706.916103 - 0: The maximum resident set size (KB) = 688244 + 0: The total amount of wall time = 726.746825 + 0: The maximum resident set size (KB) = 683400 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1078.359951 - 0: The maximum resident set size (KB) = 513692 + 0: The total amount of wall time = 1070.743498 + 0: The maximum resident set size (KB) = 511120 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.729466 - 0: The maximum resident set size (KB) = 510128 + 0: The total amount of wall time = 364.253647 + 0: The maximum resident set size (KB) = 506192 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control_dyn64_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1102.110867 - 0: The maximum resident set size (KB) = 707936 + 0: The total amount of wall time = 1072.903519 + 0: The maximum resident set size (KB) = 709996 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.781855 - 0: The maximum resident set size (KB) = 699916 + 0: The total amount of wall time = 171.646570 + 0: The maximum resident set size (KB) = 710136 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.851566 - 0: The maximum resident set size (KB) = 699980 + 0: The total amount of wall time = 168.761483 + 0: The maximum resident set size (KB) = 708236 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.034935 - 0: The maximum resident set size (KB) = 723560 + 0: The total amount of wall time = 201.643285 + 0: The maximum resident set size (KB) = 725036 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1726.723673 - 0: The maximum resident set size (KB) = 1430224 + 0: The total amount of wall time = 2093.371276 + 0: The maximum resident set size (KB) = 1427112 Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1241.191749 - 0: The maximum resident set size (KB) = 1331656 + 0: The total amount of wall time = 1230.356121 + 0: The maximum resident set size (KB) = 1331828 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 897.083803 - 0: The maximum resident set size (KB) = 1450024 + 0: The total amount of wall time = 858.534980 + 0: The maximum resident set size (KB) = 1442684 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_10981/datm_cdeps_control_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_5118/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 177.053214 - 0: The maximum resident set size (KB) = 659760 + 0: The total amount of wall time = 172.964623 + 0: The maximum resident set size (KB) = 665512 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 10 00:15:25 UTC 2023 -Elapsed time: 00h:54m:37s. Have a nice day! +Thu Jan 19 21:20:39 UTC 2023 +Elapsed time: 01h:11m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a354926f67..2faab1057a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,36 +1,36 @@ -Mon Jan 9 23:50:52 UTC 2023 +Thu Jan 19 20:30:17 UTC 2023 Start Regression test -Compile 001 elapsed time 626 seconds. -DAPP=MS2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 002 elapsed time 628 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 585 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 218 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 195 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 211 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 191 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 007 elapsed time 521 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 448 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 684 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 577 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 579 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 683 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 450 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 567 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 021 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 022 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 486 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 486 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 477 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 157 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_p8_mixedmode +Compile 022 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 506 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 516 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 481 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 520 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 161 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -95,14 +95,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 294.690427 - 0: The maximum resident set size (KB) = 3145012 + 0: The total amount of wall time = 304.594776 + 0: The maximum resident set size (KB) = 3141524 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_gfsv17 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_gfsv17 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_gfsv17 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +166,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.266708 - 0: The maximum resident set size (KB) = 1725260 + 0: The total amount of wall time = 221.547818 + 0: The maximum resident set size (KB) = 1720648 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -238,14 +238,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.578612 - 0: The maximum resident set size (KB) = 3182500 + 0: The total amount of wall time = 334.590010 + 0: The maximum resident set size (KB) = 3175452 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_restart_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -298,14 +298,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.330455 - 0: The maximum resident set size (KB) = 3052776 + 0: The total amount of wall time = 192.073820 + 0: The maximum resident set size (KB) = 3056096 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_2threads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -358,14 +358,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 417.473016 - 0: The maximum resident set size (KB) = 3465976 + 0: The total amount of wall time = 348.035107 + 0: The maximum resident set size (KB) = 3515560 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_esmfthreads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -418,14 +418,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.651548 - 0: The maximum resident set size (KB) = 3517784 + 0: The total amount of wall time = 350.193250 + 0: The maximum resident set size (KB) = 3517004 Test 006 cpld_esmfthreads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_decomp_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -478,14 +478,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.909307 - 0: The maximum resident set size (KB) = 3167264 + 0: The total amount of wall time = 333.504622 + 0: The maximum resident set size (KB) = 3169520 Test 007 cpld_decomp_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_mpi_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -538,14 +538,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.307008 - 0: The maximum resident set size (KB) = 3027956 + 0: The total amount of wall time = 275.061186 + 0: The maximum resident set size (KB) = 3027340 Test 008 cpld_mpi_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_ciceC_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -610,14 +610,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.110909 - 0: The maximum resident set size (KB) = 3186364 + 0: The total amount of wall time = 333.934292 + 0: The maximum resident set size (KB) = 3171732 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -670,14 +670,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 656.141880 - 0: The maximum resident set size (KB) = 3227012 + 0: The total amount of wall time = 572.191847 + 0: The maximum resident set size (KB) = 3252880 Test 010 cpld_control_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_restart_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -730,14 +730,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 404.247614 - 0: The maximum resident set size (KB) = 3137148 + 0: The total amount of wall time = 396.393131 + 0: The maximum resident set size (KB) = 3158520 Test 011 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_bmark_p8 Checking test 012 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -785,14 +785,14 @@ Checking test 012 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 752.773388 - 0: The maximum resident set size (KB) = 4042996 + 0: The total amount of wall time = 693.380131 + 0: The maximum resident set size (KB) = 4035840 Test 012 cpld_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_restart_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_restart_bmark_p8 Checking test 013 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -840,14 +840,14 @@ Checking test 013 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.832655 - 0: The maximum resident set size (KB) = 3973100 + 0: The total amount of wall time = 417.708920 + 0: The maximum resident set size (KB) = 3979448 Test 013 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_noaero_p8 Checking test 014 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -911,14 +911,14 @@ Checking test 014 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 250.505901 - 0: The maximum resident set size (KB) = 1714752 + 0: The total amount of wall time = 259.505650 + 0: The maximum resident set size (KB) = 1727972 Test 014 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_nowave_noaero_p8 Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -980,14 +980,14 @@ Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.254428 - 0: The maximum resident set size (KB) = 1759976 + 0: The total amount of wall time = 254.672389 + 0: The maximum resident set size (KB) = 1769648 Test 015 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_debug_p8 Checking test 016 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1040,14 +1040,14 @@ Checking test 016 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 640.551265 - 0: The maximum resident set size (KB) = 3245940 + 0: The total amount of wall time = 653.819513 + 0: The maximum resident set size (KB) = 3244612 Test 016 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_debug_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_debug_noaero_p8 Checking test 017 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.624476 - 0: The maximum resident set size (KB) = 1742604 + 0: The total amount of wall time = 402.210837 + 0: The maximum resident set size (KB) = 1737984 Test 017 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_noaero_p8_agrid Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.534654 - 0: The maximum resident set size (KB) = 1765840 + 0: The total amount of wall time = 261.772041 + 0: The maximum resident set size (KB) = 1767304 Test 018 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_control_c48 Checking test 019 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 507.694362 - 0: The maximum resident set size (KB) = 2809224 + 0: The total amount of wall time = 583.950869 + 0: The maximum resident set size (KB) = 2796392 Test 019 cpld_control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_warmstart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_warmstart_c48 Checking test 020 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 020 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 136.776711 - 0: The maximum resident set size (KB) = 2799976 + 0: The total amount of wall time = 158.121855 + 0: The maximum resident set size (KB) = 2804900 Test 020 cpld_warmstart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/cpld_restart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/cpld_restart_c48 Checking test 021 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 021 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.185098 - 0: The maximum resident set size (KB) = 2247360 + 0: The total amount of wall time = 81.023341 + 0: The maximum resident set size (KB) = 2239180 Test 021 cpld_restart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_CubedSphereGrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_CubedSphereGrid +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_CubedSphereGrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1373,28 +1373,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.659575 - 0: The maximum resident set size (KB) = 633684 + 0: The total amount of wall time = 128.290336 + 0: The maximum resident set size (KB) = 633464 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_CubedSphereGrid_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.045316 - 0: The maximum resident set size (KB) = 627948 + 0: The total amount of wall time = 126.912999 + 0: The maximum resident set size (KB) = 628384 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_latlon -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_latlon +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_latlon +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1405,14 +1405,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.480599 - 0: The maximum resident set size (KB) = 621912 + 0: The total amount of wall time = 131.314715 + 0: The maximum resident set size (KB) = 628584 Test 024 control_latlon PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.570274 - 0: The maximum resident set size (KB) = 627444 + 0: The total amount of wall time = 134.427015 + 0: The maximum resident set size (KB) = 625484 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1469,14 +1469,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 348.418127 -0: The maximum resident set size (KB) = 819064 +0: The total amount of wall time = 368.694670 +0: The maximum resident set size (KB) = 814240 Test 026 control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_c192 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_c192 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_c192 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.785152 - 0: The maximum resident set size (KB) = 759008 + 0: The total amount of wall time = 524.700043 + 0: The maximum resident set size (KB) = 763504 Test 027 control_c192 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_c384 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_c384 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_c384 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 696.385524 - 0: The maximum resident set size (KB) = 1082936 + 0: The total amount of wall time = 530.648755 + 0: The maximum resident set size (KB) = 1212532 Test 028 control_c384 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_c384gdas -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_c384gdas +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_c384gdas +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 581.328303 - 0: The maximum resident set size (KB) = 1245360 + 0: The total amount of wall time = 454.712723 + 0: The maximum resident set size (KB) = 1342016 Test 029 control_c384gdas PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_stochy +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1573,28 +1573,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.194818 - 0: The maximum resident set size (KB) = 629788 + 0: The total amount of wall time = 85.947209 + 0: The maximum resident set size (KB) = 632800 Test 030 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_stochy_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.975444 - 0: The maximum resident set size (KB) = 486124 + 0: The total amount of wall time = 45.992161 + 0: The maximum resident set size (KB) = 485332 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_lndp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1605,14 +1605,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.449968 - 0: The maximum resident set size (KB) = 634576 + 0: The total amount of wall time = 79.221468 + 0: The maximum resident set size (KB) = 629192 Test 032 control_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_iovr4 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_iovr4 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_iovr4 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1627,14 +1627,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.207471 - 0: The maximum resident set size (KB) = 629272 + 0: The total amount of wall time = 133.529954 + 0: The maximum resident set size (KB) = 627408 Test 033 control_iovr4 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_iovr5 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_iovr5 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_iovr5 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1649,14 +1649,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.100862 - 0: The maximum resident set size (KB) = 631552 + 0: The total amount of wall time = 135.884595 + 0: The maximum resident set size (KB) = 631592 Test 034 control_iovr5 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.530554 - 0: The maximum resident set size (KB) = 1607920 + 0: The total amount of wall time = 165.743358 + 0: The maximum resident set size (KB) = 1605404 Test 035 control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_p8_lndp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.483338 - 0: The maximum resident set size (KB) = 1603924 + 0: The total amount of wall time = 309.673392 + 0: The maximum resident set size (KB) = 1609248 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_restart_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1775,14 +1775,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.688965 - 0: The maximum resident set size (KB) = 868456 + 0: The total amount of wall time = 87.689142 + 0: The maximum resident set size (KB) = 865408 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_decomp_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1825,14 +1825,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.231540 - 0: The maximum resident set size (KB) = 1586168 + 0: The total amount of wall time = 171.190747 + 0: The maximum resident set size (KB) = 1585676 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_2threads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1875,14 +1875,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.553698 - 0: The maximum resident set size (KB) = 1663952 + 0: The total amount of wall time = 161.308643 + 0: The maximum resident set size (KB) = 1683764 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8_rrtmgp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_p8_rrtmgp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8_rrtmgp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1929,14 +1929,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.685211 - 0: The maximum resident set size (KB) = 1717776 + 0: The total amount of wall time = 199.908641 + 0: The maximum resident set size (KB) = 1722416 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/merra2_thompson -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/merra2_thompson +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/merra2_thompson +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.723111 - 0: The maximum resident set size (KB) = 1614812 + 0: The total amount of wall time = 187.411143 + 0: The maximum resident set size (KB) = 1602724 Test 041 merra2_thompson PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2001,28 +2001,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.217522 - 0: The maximum resident set size (KB) = 868316 + 0: The total amount of wall time = 295.060609 + 0: The maximum resident set size (KB) = 868100 Test 042 regional_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.272806 - 0: The maximum resident set size (KB) = 864728 + 0: The total amount of wall time = 150.056138 + 0: The maximum resident set size (KB) = 861768 Test 043 regional_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2033,14 +2033,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.700244 - 0: The maximum resident set size (KB) = 851924 + 0: The total amount of wall time = 309.563825 + 0: The maximum resident set size (KB) = 858892 Test 044 regional_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 228.474057 - 0: The maximum resident set size (KB) = 830072 + 0: The total amount of wall time = 180.531487 + 0: The maximum resident set size (KB) = 837232 Test 045 regional_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_noquilt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_noquilt +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_noquilt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2066,28 +2066,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.430210 - 0: The maximum resident set size (KB) = 854624 + 0: The total amount of wall time = 320.196762 + 0: The maximum resident set size (KB) = 855484 Test 046 regional_noquilt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_netcdf_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 289.133135 - 0: The maximum resident set size (KB) = 858248 + 0: The total amount of wall time = 293.996564 + 0: The maximum resident set size (KB) = 858024 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_2dwrtdecomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2098,14 +2098,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.075807 - 0: The maximum resident set size (KB) = 864744 + 0: The total amount of wall time = 295.605639 + 0: The maximum resident set size (KB) = 865356 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/fv3_regional_wofs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_wofs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/fv3_regional_wofs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.961656 - 0: The maximum resident set size (KB) = 622500 + 0: The total amount of wall time = 372.275136 + 0: The maximum resident set size (KB) = 621100 Test 049 regional_wofs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2170,14 +2170,14 @@ Checking test 050 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.450996 - 0: The maximum resident set size (KB) = 1052672 + 0: The total amount of wall time = 457.538778 + 0: The maximum resident set size (KB) = 1058004 Test 050 rap_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_rrtmgp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_rrtmgp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_rrtmgp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_rrtmgp Checking test 051 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2224,14 +2224,14 @@ Checking test 051 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.389648 - 0: The maximum resident set size (KB) = 1213004 + 0: The total amount of wall time = 485.075884 + 0: The maximum resident set size (KB) = 1221100 Test 051 rap_rrtmgp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 288.630530 - 0: The maximum resident set size (KB) = 1176492 + 0: The total amount of wall time = 281.158596 + 0: The maximum resident set size (KB) = 1175688 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.954293 - 0: The maximum resident set size (KB) = 999480 + 0: The total amount of wall time = 479.539206 + 0: The maximum resident set size (KB) = 1000408 Test 053 rap_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2350,14 +2350,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 551.258345 - 0: The maximum resident set size (KB) = 1066952 + 0: The total amount of wall time = 438.967128 + 0: The maximum resident set size (KB) = 1126228 Test 054 rap_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.607733 - 0: The maximum resident set size (KB) = 964388 + 0: The total amount of wall time = 231.526856 + 0: The maximum resident set size (KB) = 965416 Test 055 rap_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_sfcdiff +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2450,14 +2450,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.215807 - 0: The maximum resident set size (KB) = 1057136 + 0: The total amount of wall time = 450.006739 + 0: The maximum resident set size (KB) = 1065864 Test 056 rap_sfcdiff PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_sfcdiff_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.826747 - 0: The maximum resident set size (KB) = 1007084 + 0: The total amount of wall time = 477.539042 + 0: The maximum resident set size (KB) = 999980 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_sfcdiff_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2550,14 +2550,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.847122 - 0: The maximum resident set size (KB) = 974640 + 0: The total amount of wall time = 337.873673 + 0: The maximum resident set size (KB) = 984416 Test 058 rap_sfcdiff_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.357175 - 0: The maximum resident set size (KB) = 1060500 + 0: The total amount of wall time = 436.159142 + 0: The maximum resident set size (KB) = 1062124 Test 059 hrrr_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2658,14 +2658,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.944459 - 0: The maximum resident set size (KB) = 998880 + 0: The total amount of wall time = 456.814951 + 0: The maximum resident set size (KB) = 1002904 Test 060 hrrr_control_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2712,14 +2712,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 528.639882 - 0: The maximum resident set size (KB) = 1053636 + 0: The total amount of wall time = 414.417774 + 0: The maximum resident set size (KB) = 1129548 Test 061 hrrr_control_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2758,14 +2758,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.925504 - 0: The maximum resident set size (KB) = 977552 + 0: The total amount of wall time = 327.318162 + 0: The maximum resident set size (KB) = 976132 Test 062 hrrr_control_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_v1beta +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.850875 - 0: The maximum resident set size (KB) = 1053732 + 0: The total amount of wall time = 445.591202 + 0: The maximum resident set size (KB) = 1057808 Test 063 rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_v1nssl -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_v1nssl +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_v1nssl +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 530.991499 - 0: The maximum resident set size (KB) = 692056 + 0: The total amount of wall time = 539.295428 + 0: The maximum resident set size (KB) = 691244 Test 064 rrfs_v1nssl PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2856,14 +2856,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.995158 - 0: The maximum resident set size (KB) = 754356 + 0: The total amount of wall time = 513.567578 + 0: The maximum resident set size (KB) = 754492 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_hrrr_warm Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2872,14 +2872,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.337727 - 0: The maximum resident set size (KB) = 927248 + 0: The total amount of wall time = 122.872320 + 0: The maximum resident set size (KB) = 924740 Test 066 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 140.882032 - 0: The maximum resident set size (KB) = 961852 + 0: The total amount of wall time = 138.409298 + 0: The maximum resident set size (KB) = 957128 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_radar_tten_warm Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.809413 - 0: The maximum resident set size (KB) = 936164 + 0: The total amount of wall time = 123.174693 + 0: The maximum resident set size (KB) = 929248 Test 068 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_hrrr_warm_2threads Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2920,14 +2920,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.443739 - 0: The maximum resident set size (KB) = 893764 + 0: The total amount of wall time = 76.960238 + 0: The maximum resident set size (KB) = 877428 Test 069 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_radar_tten_warm_2threads Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.769290 - 0: The maximum resident set size (KB) = 904536 + 0: The total amount of wall time = 78.067755 + 0: The maximum resident set size (KB) = 837524 Test 070 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_csawmg -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_csawmg +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_csawmg +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,14 +2954,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.278974 - 0: The maximum resident set size (KB) = 724972 + 0: The total amount of wall time = 340.557831 + 0: The maximum resident set size (KB) = 726856 Test 071 control_csawmg PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_csawmgt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_csawmgt +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_csawmgt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2972,14 +2972,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.257345 - 0: The maximum resident set size (KB) = 726316 + 0: The total amount of wall time = 335.944931 + 0: The maximum resident set size (KB) = 729088 Test 072 control_csawmgt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_ras +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2990,54 +2990,54 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.311385 - 0: The maximum resident set size (KB) = 711500 + 0: The total amount of wall time = 178.594146 + 0: The maximum resident set size (KB) = 720968 Test 073 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_wam -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_wam +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_wam +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.871335 - 0: The maximum resident set size (KB) = 636460 + 0: The total amount of wall time = 110.913254 + 0: The maximum resident set size (KB) = 638532 Test 074 control_wam PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 743.438449 - 0: The maximum resident set size (KB) = 955052 + 0: The total amount of wall time = 720.711917 + 0: The maximum resident set size (KB) = 953772 Test 075 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 720.177102 - 0: The maximum resident set size (KB) = 965716 + 0: The total amount of wall time = 725.986392 + 0: The maximum resident set size (KB) = 956596 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_CubedSphereGrid_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3064,348 +3064,348 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.157060 - 0: The maximum resident set size (KB) = 794160 + 0: The total amount of wall time = 161.107480 + 0: The maximum resident set size (KB) = 795568 Test 077 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.525690 - 0: The maximum resident set size (KB) = 797564 + 0: The total amount of wall time = 152.310675 + 0: The maximum resident set size (KB) = 795444 Test 078 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_stochy_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.530797 - 0: The maximum resident set size (KB) = 794784 + 0: The total amount of wall time = 171.119919 + 0: The maximum resident set size (KB) = 799044 Test 079 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_lndp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.492199 - 0: The maximum resident set size (KB) = 799096 + 0: The total amount of wall time = 154.729916 + 0: The maximum resident set size (KB) = 801684 Test 080 control_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_csawmg_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_csawmg_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_csawmg_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.350414 - 0: The maximum resident set size (KB) = 844864 + 0: The total amount of wall time = 233.215826 + 0: The maximum resident set size (KB) = 847536 Test 081 control_csawmg_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_csawmgt_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_csawmgt_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_csawmgt_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.395997 - 0: The maximum resident set size (KB) = 842660 + 0: The total amount of wall time = 226.639218 + 0: The maximum resident set size (KB) = 846120 Test 082 control_csawmgt_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_ras_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.803189 - 0: The maximum resident set size (KB) = 808384 + 0: The total amount of wall time = 155.537508 + 0: The maximum resident set size (KB) = 805272 Test 083 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.310587 - 0: The maximum resident set size (KB) = 859592 + 0: The total amount of wall time = 162.434033 + 0: The maximum resident set size (KB) = 854220 Test 084 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.788574 - 0: The maximum resident set size (KB) = 1624196 + 0: The total amount of wall time = 169.592989 + 0: The maximum resident set size (KB) = 1626456 Test 085 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 973.174547 - 0: The maximum resident set size (KB) = 883924 + 0: The total amount of wall time = 975.366362 + 0: The maximum resident set size (KB) = 881544 Test 086 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.915518 - 0: The maximum resident set size (KB) = 1174964 + 0: The total amount of wall time = 275.332415 + 0: The maximum resident set size (KB) = 1177956 Test 087 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.709443 - 0: The maximum resident set size (KB) = 1168660 + 0: The total amount of wall time = 272.282137 + 0: The maximum resident set size (KB) = 1166028 Test 088 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_unified_drag_suite_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.434299 - 0: The maximum resident set size (KB) = 1177228 + 0: The total amount of wall time = 275.265220 + 0: The maximum resident set size (KB) = 1172120 Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.326978 - 0: The maximum resident set size (KB) = 1259728 + 0: The total amount of wall time = 291.464861 + 0: The maximum resident set size (KB) = 1259068 Test 090 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.757939 - 0: The maximum resident set size (KB) = 1174440 + 0: The total amount of wall time = 283.362220 + 0: The maximum resident set size (KB) = 1176056 Test 091 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_unified_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.161953 - 0: The maximum resident set size (KB) = 1179136 + 0: The total amount of wall time = 273.786734 + 0: The maximum resident set size (KB) = 1173024 Test 092 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_lndp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.869395 - 0: The maximum resident set size (KB) = 1175764 + 0: The total amount of wall time = 283.833518 + 0: The maximum resident set size (KB) = 1173620 Test 093 rap_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_flake_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_flake_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_flake_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.130726 - 0: The maximum resident set size (KB) = 1177652 + 0: The total amount of wall time = 276.506965 + 0: The maximum resident set size (KB) = 1166688 Test 094 rap_flake_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_progcld_thompson_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.019174 - 0: The maximum resident set size (KB) = 1177804 + 0: The total amount of wall time = 276.844140 + 0: The maximum resident set size (KB) = 1170860 Test 095 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_noah_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_noah_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_noah_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.706199 - 0: The maximum resident set size (KB) = 1176308 + 0: The total amount of wall time = 270.514786 + 0: The maximum resident set size (KB) = 1168452 Test 096 rap_noah_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_rrtmgp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_rrtmgp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_rrtmgp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_rrtmgp_debug Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.344290 - 0: The maximum resident set size (KB) = 1297104 + 0: The total amount of wall time = 456.550736 + 0: The maximum resident set size (KB) = 1292624 Test 097 rap_rrtmgp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_sfcdiff_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_sfcdiff_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_sfcdiff_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.271714 - 0: The maximum resident set size (KB) = 1168388 + 0: The total amount of wall time = 275.114924 + 0: The maximum resident set size (KB) = 1174804 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.458971 - 0: The maximum resident set size (KB) = 1174040 + 0: The total amount of wall time = 460.796224 + 0: The maximum resident set size (KB) = 1173632 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rrfs_v1beta_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.526539 - 0: The maximum resident set size (KB) = 1170548 + 0: The total amount of wall time = 271.146473 + 0: The maximum resident set size (KB) = 1166972 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_wam_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 279.019246 - 0: The maximum resident set size (KB) = 532412 + 0: The total amount of wall time = 282.647437 + 0: The maximum resident set size (KB) = 520200 Test 101 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3416,14 +3416,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.881715 - 0: The maximum resident set size (KB) = 1071008 + 0: The total amount of wall time = 259.570674 + 0: The maximum resident set size (KB) = 1074904 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3470,14 +3470,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.012295 - 0: The maximum resident set size (KB) = 1006216 + 0: The total amount of wall time = 367.960453 + 0: The maximum resident set size (KB) = 1004740 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.136761 - 0: The maximum resident set size (KB) = 956496 + 0: The total amount of wall time = 192.157029 + 0: The maximum resident set size (KB) = 959408 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3578,14 +3578,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.010288 - 0: The maximum resident set size (KB) = 925364 + 0: The total amount of wall time = 358.312184 + 0: The maximum resident set size (KB) = 1016436 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3632,14 +3632,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.669273 - 0: The maximum resident set size (KB) = 927816 + 0: The total amount of wall time = 190.334810 + 0: The maximum resident set size (KB) = 1004788 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3686,14 +3686,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.909068 - 0: The maximum resident set size (KB) = 901800 + 0: The total amount of wall time = 205.292244 + 0: The maximum resident set size (KB) = 894636 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3732,14 +3732,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.614000 - 0: The maximum resident set size (KB) = 951672 + 0: The total amount of wall time = 280.523758 + 0: The maximum resident set size (KB) = 953084 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3778,14 +3778,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.633602 - 0: The maximum resident set size (KB) = 856688 + 0: The total amount of wall time = 99.494046 + 0: The maximum resident set size (KB) = 860672 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control_dyn64_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3832,81 +3832,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.204583 - 0: The maximum resident set size (KB) = 966940 + 0: The total amount of wall time = 240.507284 + 0: The maximum resident set size (KB) = 962152 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.074833 - 0: The maximum resident set size (KB) = 1057096 + 0: The total amount of wall time = 269.531728 + 0: The maximum resident set size (KB) = 1059120 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.204739 - 0: The maximum resident set size (KB) = 1059800 + 0: The total amount of wall time = 264.513587 + 0: The maximum resident set size (KB) = 1061908 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.779143 - 0: The maximum resident set size (KB) = 1101668 + 0: The total amount of wall time = 276.392248 + 0: The maximum resident set size (KB) = 1097744 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 300.743481 - 0: The maximum resident set size (KB) = 981112 + 0: The total amount of wall time = 240.286834 + 0: The maximum resident set size (KB) = 1016592 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 380.268090 - 0: The maximum resident set size (KB) = 1338040 + 0: The total amount of wall time = 309.724558 + 0: The maximum resident set size (KB) = 1396480 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_atm_ocn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.721202 - 0: The maximum resident set size (KB) = 1197360 + 0: The total amount of wall time = 379.441645 + 0: The maximum resident set size (KB) = 1198324 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_atm_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_atm_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_atm_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 714.653142 - 0: The maximum resident set size (KB) = 1223212 + 0: The total amount of wall time = 715.913770 + 0: The maximum resident set size (KB) = 1228268 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,28 +3949,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 807.119898 - 0: The maximum resident set size (KB) = 1240240 + 0: The total amount of wall time = 822.325516 + 0: The maximum resident set size (KB) = 1248128 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 464.166521 - 0: The maximum resident set size (KB) = 532948 + 0: The total amount of wall time = 345.493374 + 0: The maximum resident set size (KB) = 499636 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3979,28 +3979,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 510.638172 - 0: The maximum resident set size (KB) = 591796 + 0: The total amount of wall time = 392.012562 + 0: The maximum resident set size (KB) = 508752 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_global_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_global_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_global_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 212.553636 - 0: The maximum resident set size (KB) = 379832 + 0: The total amount of wall time = 157.638713 + 0: The maximum resident set size (KB) = 347208 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4018,14 +4018,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 589.340292 - 0: The maximum resident set size (KB) = 429004 + 0: The total amount of wall time = 447.083081 + 0: The maximum resident set size (KB) = 416748 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4034,28 +4034,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 276.802483 - 0: The maximum resident set size (KB) = 549548 + 0: The total amount of wall time = 214.268195 + 0: The maximum resident set size (KB) = 509792 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 262.593363 - 0: The maximum resident set size (KB) = 547568 + 0: The total amount of wall time = 203.599930 + 0: The maximum resident set size (KB) = 511664 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 271.915263 - 0: The maximum resident set size (KB) = 621308 + 0: The total amount of wall time = 223.177784 + 0: The maximum resident set size (KB) = 546824 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,28 +4082,28 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 628.113952 - 0: The maximum resident set size (KB) = 608344 + 0: The total amount of wall time = 520.766463 + 0: The maximum resident set size (KB) = 640064 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_global_storm_following_1nest_atm Checking test 127 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 78.982509 - 0: The maximum resident set size (KB) = 398172 + 0: The total amount of wall time = 61.574261 + 0: The maximum resident set size (KB) = 354172 Test 127 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_docn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_docn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_docn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4111,14 +4111,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.842447 - 0: The maximum resident set size (KB) = 1200752 + 0: The total amount of wall time = 381.278952 + 0: The maximum resident set size (KB) = 1211332 Test 128 hafs_regional_docn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_docn_oisst +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,131 +4126,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 382.507841 - 0: The maximum resident set size (KB) = 1186584 + 0: The total amount of wall time = 383.281882 + 0: The maximum resident set size (KB) = 1192868 Test 129 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/hafs_regional_datm_cdeps +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.391431 - 0: The maximum resident set size (KB) = 1042392 + 0: The total amount of wall time = 940.811378 + 0: The maximum resident set size (KB) = 1045104 Test 130 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_control_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.035679 - 0: The maximum resident set size (KB) = 1065168 + 0: The total amount of wall time = 154.868587 + 0: The maximum resident set size (KB) = 1068808 Test 131 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_restart_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.798035 - 0: The maximum resident set size (KB) = 1019272 + 0: The total amount of wall time = 93.336439 + 0: The maximum resident set size (KB) = 1030660 Test 132 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_control_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.247018 - 0: The maximum resident set size (KB) = 970028 + 0: The total amount of wall time = 148.525596 + 0: The maximum resident set size (KB) = 971888 Test 133 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_iau_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.314135 - 0: The maximum resident set size (KB) = 958124 + 0: The total amount of wall time = 150.439819 + 0: The maximum resident set size (KB) = 967732 Test 134 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_stochy_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.480635 - 0: The maximum resident set size (KB) = 955716 + 0: The total amount of wall time = 152.881582 + 0: The maximum resident set size (KB) = 965424 Test 135 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.324270 - 0: The maximum resident set size (KB) = 1057516 + 0: The total amount of wall time = 152.603126 + 0: The maximum resident set size (KB) = 1076192 Test 136 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.759182 - 0: The maximum resident set size (KB) = 1053924 + 0: The total amount of wall time = 154.397509 + 0: The maximum resident set size (KB) = 1057476 Test 137 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_bulk_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.677919 - 0: The maximum resident set size (KB) = 966980 + 0: The total amount of wall time = 148.225350 + 0: The maximum resident set size (KB) = 966004 Test 138 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4259,14 +4259,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 424.717728 - 0: The maximum resident set size (KB) = 887024 + 0: The total amount of wall time = 405.759739 + 0: The maximum resident set size (KB) = 882968 Test 139 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_mx025_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4275,64 +4275,64 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.031170 - 0: The maximum resident set size (KB) = 935476 + 0: The total amount of wall time = 391.200606 + 0: The maximum resident set size (KB) = 933064 Test 140 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.092123 - 0: The maximum resident set size (KB) = 1072704 + 0: The total amount of wall time = 156.342112 + 0: The maximum resident set size (KB) = 1068308 Test 141 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 213.698092 - 0: The maximum resident set size (KB) = 2306064 + 0: The total amount of wall time = 220.099724 + 0: The maximum resident set size (KB) = 2292204 Test 142 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_gfs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_gfs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_gfs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.115681 - 0: The maximum resident set size (KB) = 2359888 + 0: The total amount of wall time = 216.030040 + 0: The maximum resident set size (KB) = 2364940 Test 143 datm_cdeps_gfs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_debug_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 452.535843 - 0: The maximum resident set size (KB) = 998340 + 0: The total amount of wall time = 448.020334 + 0: The maximum resident set size (KB) = 991856 Test 144 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.599854 - 0: The maximum resident set size (KB) = 256184 + 0: The total amount of wall time = 6.548589 + 0: The maximum resident set size (KB) = 261144 Test 145 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4357,14 +4357,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.227202 - 0: The maximum resident set size (KB) = 258068 + 0: The total amount of wall time = 12.148330 + 0: The maximum resident set size (KB) = 260056 Test 146 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_p8_atmlnd_sbs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4449,14 +4449,14 @@ Checking test 147 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 198.132593 - 0: The maximum resident set size (KB) = 1604620 + 0: The total amount of wall time = 200.161383 + 0: The maximum resident set size (KB) = 1606060 Test 147 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/control_atmwav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/control_atmwav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/control_atmwav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4500,14 +4500,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.748594 - 0: The maximum resident set size (KB) = 659064 + 0: The total amount of wall time = 85.021009 + 0: The maximum resident set size (KB) = 659132 Test 148 control_atmwav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/atmaero_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/atmaero_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/atmaero_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4551,14 +4551,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.483054 - 0: The maximum resident set size (KB) = 2973828 + 0: The total amount of wall time = 221.964846 + 0: The maximum resident set size (KB) = 2973136 Test 149 atmaero_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/atmaero_control_p8_rad -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/atmaero_control_p8_rad +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/atmaero_control_p8_rad +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4602,14 +4602,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.642252 - 0: The maximum resident set size (KB) = 3047460 + 0: The total amount of wall time = 276.941953 + 0: The maximum resident set size (KB) = 3046592 Test 150 atmaero_control_p8_rad PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/atmaero_control_p8_rad_micro +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4653,14 +4653,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.387471 - 0: The maximum resident set size (KB) = 3057052 + 0: The total amount of wall time = 280.654123 + 0: The maximum resident set size (KB) = 3050992 Test 151 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_atmaq -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_atmaq +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_atmaq +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4676,14 +4676,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 655.599895 - 0: The maximum resident set size (KB) = 1093056 + 0: The total amount of wall time = 657.931914 + 0: The maximum resident set size (KB) = 1095632 Test 152 regional_atmaq PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20220109/INTEL/regional_atmaq_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_21749/regional_atmaq_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230119/INTEL/regional_atmaq_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_28785/regional_atmaq_debug Checking test 153 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4697,12 +4697,12 @@ Checking test 153 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 1234.503703 - 0: The maximum resident set size (KB) = 1198652 + 0: The total amount of wall time = 1247.485288 + 0: The maximum resident set size (KB) = 1198988 Test 153 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 10 01:00:38 UTC 2023 -Elapsed time: 01h:09m:47s. Have a nice day! +Thu Jan 19 21:57:39 UTC 2023 +Elapsed time: 01h:27m:22s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4716066bd7..d3ce19bffc 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -9,24 +9,24 @@ THRD=1 - TASKS_atmaero=198; INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6 + INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6 - TASKS_cpl_atmw=180; THRD_cpl_atmw=1 + THRD_cpl_atmw=1 INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 WAV_tasks_atmw=30 - TASKS_cpl_c48=20; THRD_cpl_c48=1 + THRD_cpl_c48=1 INPES_cpl_c48=1; JNPES_cpl_c48=1; WPG_cpl_c48=6 OCN_tasks_cpl_c48=4 ICE_tasks_cpl_c48=4 - TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + THRD_cpl_dflt=1 INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 OCN_tasks_cpl_dflt=20 ICE_tasks_cpl_dflt=10 WAV_tasks_cpl_dflt=20 - TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + THRD_cpl_thrd=2 INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 OCN_tasks_cpl_thrd=20 OCN_thrds_cpl_thrd=1 @@ -35,19 +35,19 @@ WAV_tasks_cpl_thrd=12 WAV_thrds_cpl_thrd=2 - TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + THRD_cpl_dcmp=1 INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 OCN_tasks_cpl_dcmp=20 ICE_tasks_cpl_dcmp=10 WAV_tasks_cpl_dcmp=20 - TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + THRD_cpl_mpi=1 INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 OCN_tasks_cpl_mpi=34 ICE_tasks_cpl_mpi=20 WAV_tasks_cpl_mpi=28 - TASKS_cpl_bmrk=680; THRD_cpl_bmrk=2 + THRD_cpl_bmrk=2 INPES_cpl_bmrk=8; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48 OCN_tasks_cpl_bmrk=120 OCN_thrds_cpl_bmrk=1 @@ -56,34 +56,41 @@ WAV_tasks_cpl_bmrk=80 WAV_thrds_cpl_bmrk=2 - TASKS_cpl_c192=464; THRD_cpl_c192=2 + THRD_cpl_c192=2 INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 OCN_tasks_cpl_c192=60 ICE_tasks_cpl_c192=24 WAV_tasks_cpl_c192=80 - TASKS_cdeps_100=40 ATM_compute_tasks_cdeps_100=12 OCN_tasks_cdeps_100=16 ICE_tasks_cdeps_100=12 - TASKS_cdeps_025=208 ATM_compute_tasks_cdeps_025=40 OCN_tasks_cdeps_025=120 ICE_tasks_cdeps_025=48 - TASKS_aqm=272; INPES_aqm=33; JNPES_aqm=8 + INPES_aqm=33; JNPES_aqm=8 + + aqm_omp_num_threads=1 + atm_omp_num_threads=1 + chm_omp_num_threads=1 + ice_omp_num_threads=1 + lnd_omp_num_threads=1 + med_omp_num_threads=1 + ocn_omp_num_threads=1 + wav_omp_num_threads=1 if [[ $MACHINE_ID = wcoss2.* || $MACHINE_ID = acorn.* ]]; then TPN=128 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + THRD_cpl_atmw_gdas=2 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=248 @@ -91,12 +98,12 @@ elif [[ $MACHINE_ID = orion.* ]]; then TPN=40 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + THRD_cpl_atmw_gdas=2 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=248 @@ -104,12 +111,12 @@ elif [[ $MACHINE_ID = hera.* ]]; then TPN=40 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=4 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=4 - TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + THRD_cpl_atmw_gdas=2 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=248 @@ -117,16 +124,16 @@ elif [[ $MACHINE_ID = linux.* ]]; then TPN=40 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 - TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + THRD_cpl_dflt=1 INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 OCN_tasks_cpl_dflt=20 ICE_tasks_cpl_dflt=10 WAV_tasks_cpl_dflt=20 - TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + THRD_cpl_thrd=2 INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 OCN_tasks_cpl_thrd=20 ICE_tasks_cpl_thrd=10 @@ -136,17 +143,17 @@ elif [[ $MACHINE_ID = jet.* ]]; then TPN=24 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=480 ; INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_atmw_gdas=552; THRD_cpl_atmw_gdas=2 + THRD_cpl_atmw_gdas=2 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=240 # run only in weekly test - TASKS_cpl_bmrk=1832; THRD_cpl_bmrk=2 + THRD_cpl_bmrk=2 INPES_cpl_bmrk=16; JNPES_cpl_bmrk=16; WPG_cpl_bmrk=48 OCN_tasks_cpl_bmrk=100 ICE_tasks_cpl_bmrk=48 @@ -154,7 +161,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then WLCLK_cpl_bmrk=120 # run only in weekly test - TASKS_cpl_c192=1404; THRD_cpl_c192=2 + THRD_cpl_c192=2 INPES_cpl_c192=12; JNPES_cpl_c192=16; WPG_cpl_c192=24 OCN_tasks_cpl_c192=100 ICE_tasks_cpl_c192=48 @@ -165,16 +172,16 @@ elif [[ $MACHINE_ID = s4.* ]]; then TPN=32 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1 - TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + THRD_cpl_atmw_gdas=2 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=248 - TASKS_cpl_bmrk=560; THRD_cpl_bmrk=2 + THRD_cpl_bmrk=2 INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=24 OCN_tasks_cpl_bmrk=120 ICE_tasks_cpl_bmrk=48 @@ -184,12 +191,12 @@ elif [[ $MACHINE_ID = gaea.* ]]; then TPN=36 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_atmw_gdas=576; THRD_cpl_atmw_gdas=3 + THRD_cpl_atmw_gdas=3 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=264 @@ -197,40 +204,40 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then TPN=36 - TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - TASKS_c768=992 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_atmw_gdas=576; THRD_cpl_atmw_gdas=3 + THRD_cpl_atmw_gdas=3 INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=264 - TASKS_cpl_dflt=344; THRD_cpl_dflt=1 + THRD_cpl_dflt=1 INPES_cpl_dflt=6; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 OCN_tasks_cpl_dflt=20 ICE_tasks_cpl_dflt=10 WAV_tasks_cpl_dflt=20 - TASKS_cpl_thrd=200; THRD_cpl_thrd=2 + THRD_cpl_thrd=2 INPES_cpl_thrd=6; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 OCN_tasks_cpl_thrd=20 ICE_tasks_cpl_thrd=10 WAV_tasks_cpl_thrd=20 - TASKS_cpl_dcmp=344; THRD_cpl_dcmp=1 + THRD_cpl_dcmp=1 INPES_cpl_dcmp=4; JNPES_cpl_dcmp=12; WPG_cpl_dcmp=6 OCN_tasks_cpl_dcmp=20 ICE_tasks_cpl_dcmp=10 WAV_tasks_cpl_dcmp=20 - TASKS_cpl_mpi=498; THRD_cpl_mpi=1 + THRD_cpl_mpi=1 INPES_cpl_mpi=6; JNPES_cpl_mpi=12; WPG_cpl_mpi=6 OCN_tasks_cpl_mpi=24 ICE_tasks_cpl_mpi=12 WAV_tasks_cpl_mpi=24 - TASKS_cpl_bmrk=892; THRD_cpl_bmrk=2 + THRD_cpl_bmrk=2 INPES_cpl_bmrk=12; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48 OCN_tasks_cpl_bmrk=120 ICE_tasks_cpl_bmrk=48 @@ -241,13 +248,13 @@ elif [[ $MACHINE_ID = stampede.* ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TASKS_dflt=150 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=992 ; TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 + TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 + TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 + TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 + TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" elif [[ $MACHINE_ID = expanse.* ]]; then @@ -255,11 +262,11 @@ elif [[ $MACHINE_ID = expanse.* ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TASKS_dflt=150 ; TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 + TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 + TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" else @@ -291,7 +298,6 @@ export USE_MERRA2=.false. export NTILES=6 export INPES=$INPES_dflt export JNPES=$JNPES_dflt -export TASKS=$TASKS_dflt export RESTART_INTERVAL=0 export QUILTING=.true. export WRITE_GROUP=1 @@ -608,7 +614,6 @@ export NPZP=128 # default resources export DOMAINS_STACK_SIZE=8000000 -export TASKS=$TASKS_cpl_dflt export INPES=$INPES_cpl_dflt export JNPES=$JNPES_cpl_dflt export THRD=$THRD_cpl_dflt @@ -893,7 +898,6 @@ export ice_model=cice6 export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100 export OCN_tasks=$OCN_tasks_cdeps_100 export ICE_tasks=$ICE_tasks_cdeps_100 -export TASKS=$TASKS_cdeps_100 # SlenderX2 export CICE_DECOMP=slenderX2 export NPROC_ICE=12 @@ -995,7 +999,6 @@ export DATM_CDEPS=true export DOCN_CDEPS=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt -export TASKS=$TASKS_dflt export NTILES=1 export atm_model=datm @@ -1012,7 +1015,6 @@ export AQM=false export DOCN_CDEPS=true export INPES=$INPES_dflt export JNPES=$JNPES_dflt -export TASKS=$TASKS_dflt export NTILES=1 export ocn_model=docn @@ -1031,7 +1033,6 @@ export DATM_CDEPS=false export DOCN_CDEPS=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt -export TASKS=$TASKS_dflt export NTILES=1 # model_configure @@ -1100,7 +1101,6 @@ export DATM_CDEPS=false export DOCN_CDEPS=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt -export TASKS=$TASKS_dflt export NTILES=1 export IS_MOVING_NEST=".false." diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 0a58e396ef..d5d70f28f1 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -896,13 +896,6 @@ # WW3 export #----------------------------------- # - - standard_name: Sw_ch - alias: wave_induced_charnock_parameter - canonical_units: 1 - description: ww3 export - - standard_name: Sw_ch - alias: charno - # - standard_name: Sw_z0 alias: wave_z0_roughness_length canonical_units: 1 @@ -910,61 +903,53 @@ - standard_name: Sw_z0 alias: z0rlen # - - standard_name: Sw_ustokes - alias: eastward_stokes_drift_current + - standard_name: Sw_pstokes_x + alias: eastward_partitioned_stokes_drift_current canonical_units: m s-1 - description: ww3 export using ungridded dimension for drift components - - standard_name: Sw_ustokes - alias: uscurr + description: ww3 export partitioned drift components using ungridded dimension # - - standard_name: Sw_vstokes - alias: northward_stokes_drift_current + - standard_name: Sw_pstokes_y + alias: northward_partitioned_stokes_drift_current canonical_units: m s-1 - description: ww3 export using ungridded dimension for drift components - - standard_name: Sw_vstokes - alias: vscurr + description: ww3 export partitioned drift components using ungridded dimension # - - standard_name: Sw_ustokes1 - alias: eastward_partitioned_stokes_drift_1 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_ustokes1 - alias: x1pstk + - standard_name: Sw_elevation_spectrum + alias: wave_elevation_spectrum + canonical_units: m2/s + description: wave elevation spectrum # - - standard_name: Sw_ustokes2 - alias: eastward_partitioned_stokes_drift_2 - canonical_units: m s-1 + # remaining fields are unused but required to be present + # + - standard_name: Sw_ch + alias: wave_induced_charnock_parameter + canonical_units: 1 description: ww3 export - - standard_name: Sw_ustokes2 - alias: x2pstk + - standard_name: Sw_ch + alias: charno # - - standard_name: Sw_ustokes3 - alias: eastward_partitioned_stokes_drift_3 + - standard_name: eastward_stokes_drift_current + alias: uscurr canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_ustokes3 - alias: x3pstk + description: ww3 export spectrum of drift components # - - standard_name: Sw_vstokes1 - alias: northward_partitioned_stokes_drift_1 + - standard_name: northward_stokes_drift_current + alias: vscurr canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes1 - alias: y1pstk + description: ww3 export spectrum of drift components # - - standard_name: Sw_vstokes2 - alias: northward_partitioned_stokes_drift_2 + - standard_name: Sw_ustokes + alias: eastward_surface_stokes_drift_current canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes2 - alias: y2pstk + description: ww3 export surface drift components + - standard_name: Sw_ustokes + alias: ussx # - - standard_name: Sw_vstokes3 - alias: northward_partitioned_stokes_drift_3 + - standard_name: Sw_vstokes + alias: northward_surface_stokes_drift_current canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes3 - alias: y3pstk + description: ww3 export using surface drift components + - standard_name: Sw_vstokes + alias: ussy # - standard_name: Sw_wbcuru alias: eastward_wave_bottom_current @@ -1008,10 +993,47 @@ - standard_name: Sw_wavsvv alias: wavsvv # - - standard_name: Sw_elevation_spectrum - alias: wave_elevation_spectrum - canonical_units: m2/s - description: wave elevation spectrum + - standard_name: Sw_ustokes1 + alias: eastward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes1 + alias: x1pstk + # + - standard_name: Sw_ustokes2 + alias: eastward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes2 + alias: x2pstk + # + - standard_name: Sw_ustokes3 + alias: eastward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes3 + alias: x3pstk + # + - standard_name: Sw_vstokes1 + alias: northward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes1 + alias: y1pstk + # + - standard_name: Sw_vstokes2 + alias: northward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes2 + alias: y2pstk + # + - standard_name: Sw_vstokes3 + alias: northward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes3 + alias: y3pstk # #----------------------------------- # section: FV3 atm export/import to/from JEDI diff --git a/tests/parm/model_configure_fhout.IN b/tests/parm/model_configure_fhout.IN index 8c4de33e45..fe490f2129 100644 --- a/tests/parm/model_configure_fhout.IN +++ b/tests/parm/model_configure_fhout.IN @@ -1,4 +1,3 @@ -PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] diff --git a/tests/parm/nems.configure.atm.IN b/tests/parm/nems.configure.atm.IN index d98d6119e3..5cc4cfcb66 100644 --- a/tests/parm/nems.configure.atm.IN +++ b/tests/parm/nems.configure.atm.IN @@ -1,7 +1,27 @@ - logKindFlag: ESMF_LOGKIND_MULTI - EARTH_component_list: ATM - ATM_model: @[atm_model] - ATM_petlist_bounds: @[atm_petlist_bounds] - runSeq:: - ATM - :: +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# Run Sequence # +runSeq:: + ATM +:: diff --git a/tests/parm/nems.configure.atm_lnd.IN b/tests/parm/nems.configure.atm_lnd.IN index 391f4008ad..939c96e219 100644 --- a/tests/parm/nems.configure.atm_lnd.IN +++ b/tests/parm/nems.configure.atm_lnd.IN @@ -2,6 +2,10 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + # EARTH # EARTH_component_list: MED ATM LND EARTH_attributes:: @@ -11,6 +15,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] MED_attributes:: Verbosity = 1 Diagnostic = 0 @@ -29,6 +34,7 @@ MED_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 Diagnostic = 0 @@ -37,12 +43,13 @@ ATM_attributes:: # LND # LND_model: @[lnd_model] LND_petlist_bounds: @[lnd_petlist_bounds] +LND_omp_num_threads: @[lnd_omp_num_threads] LND_attributes:: Verbosity = 1 Diagnostic = 0 mosaic_file = @[mosaic_file] input_dir = INPUT/ - ic_type = @[lnd_ic_type] + ic_type = @[lnd_ic_type] layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs num_soil_levels = 4 forcing_height = 10 @@ -60,7 +67,7 @@ LND_attributes:: precip_partition_option = 4 soil_temp_lower_bdy_option = 2 soil_temp_time_scheme_option = 3 - surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 + surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 glacier_option = 1 surface_thermal_roughness_option = 2 output_freq = 10800 @@ -114,6 +121,6 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 - read_restart = @[READRESTART] + read_restart = @[READRESTART] mediator_present = true :: diff --git a/tests/parm/nems.configure.atmaero.IN b/tests/parm/nems.configure.atmaero.IN index cee9daf9b1..690a60ede8 100644 --- a/tests/parm/nems.configure.atmaero.IN +++ b/tests/parm/nems.configure.atmaero.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: ATM CHM @@ -14,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 :: @@ -21,6 +23,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: diff --git a/tests/parm/nems.configure.atmaq.IN b/tests/parm/nems.configure.atmaq.IN index a20056dbbe..5bb92e1359 100644 --- a/tests/parm/nems.configure.atmaq.IN +++ b/tests/parm/nems.configure.atmaq.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: ATM AQM @@ -12,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 :: @@ -19,6 +23,7 @@ ATM_attributes:: # AQM # AQM_model: @[aqm_model] AQM_petlist_bounds: @[aqm_petlist_bounds] +AQM_omp_num_threads: @[aqm_omp_num_threads] AQM_attributes:: Verbosity = 0 :: diff --git a/tests/parm/nems.configure.blocked_atm_wav.IN b/tests/parm/nems.configure.blocked_atm_wav.IN index 5e0c0ad702..37f809e748 100644 --- a/tests/parm/nems.configure.blocked_atm_wav.IN +++ b/tests/parm/nems.configure.blocked_atm_wav.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: ATM WAV @@ -14,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -22,6 +24,7 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: @@ -31,7 +34,7 @@ WAV_attributes:: # Run Sequence # runSeq:: @@[coupling_interval_sec] - ATM -> WAV + ATM -> WAV ATM WAV @ diff --git a/tests/parm/nems.configure.blocked_atm_wav_2way.IN b/tests/parm/nems.configure.blocked_atm_wav_2way.IN index 0e4e84dfff..24409614fb 100644 --- a/tests/parm/nems.configure.blocked_atm_wav_2way.IN +++ b/tests/parm/nems.configure.blocked_atm_wav_2way.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: ATM WAV @@ -14,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -22,6 +24,7 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: @@ -31,7 +34,7 @@ WAV_attributes:: # Run Sequence # runSeq:: @@[coupling_interval_sec] - ATM -> WAV + ATM -> WAV WAV -> ATM :srcMaskValues=1 ATM WAV diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index e4912d4ffa..3f4da44a0f 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -14,10 +15,12 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -28,6 +31,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -35,6 +39,7 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = false @@ -46,6 +51,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = false @@ -60,6 +66,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false diff --git a/tests/parm/nems.configure.cpld_agrid.IN b/tests/parm/nems.configure.cpld_agrid.IN index ce6f772dbb..6afb2fa618 100644 --- a/tests/parm/nems.configure.cpld_agrid.IN +++ b/tests/parm/nems.configure.cpld_agrid.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -14,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -29,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = false @@ -40,6 +44,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = false diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/nems.configure.cpld_noaero.IN index 925baced2f..d12b8e836d 100644 --- a/tests/parm/nems.configure.cpld_noaero.IN +++ b/tests/parm/nems.configure.cpld_noaero.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -14,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -29,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = false @@ -40,6 +44,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = false @@ -54,6 +59,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false diff --git a/tests/parm/nems.configure.cpld_noaero_nowave.IN b/tests/parm/nems.configure.cpld_noaero_nowave.IN index 8b4c1f8a04..6a5458756b 100644 --- a/tests/parm/nems.configure.cpld_noaero_nowave.IN +++ b/tests/parm/nems.configure.cpld_noaero_nowave.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -14,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -29,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = false @@ -40,6 +44,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = false diff --git a/tests/parm/nems.configure.datm_cdeps.IN b/tests/parm/nems.configure.datm_cdeps.IN index 51d67dfd9a..fb8462eccc 100644 --- a/tests/parm/nems.configure.datm_cdeps.IN +++ b/tests/parm/nems.configure.datm_cdeps.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -14,10 +15,12 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -33,6 +36,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = false @@ -44,6 +48,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = false diff --git a/tests/parm/nems.configure.hafs_atm.IN b/tests/parm/nems.configure.hafs_atm.IN index 3517a12a84..d72121d166 100644 --- a/tests/parm/nems.configure.hafs_atm.IN +++ b/tests/parm/nems.configure.hafs_atm.IN @@ -1,18 +1,33 @@ - logKindFlag: ESMF_LOGKIND_MULTI +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# - EARTH_component_list: ATM +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true - ATM_model: @[atm_model] - ATM_petlist_bounds: @[atm_petlist_bounds] - ATM_attributes:: - :: +# EARTH # +EARTH_component_list: ATM +EARTH_attributes:: + Verbosity = 0 +:: - runSeq:: - ATM - :: +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: - DRIVER_attributes:: - :: +# Run Sequence # +runSeq:: + ATM +:: - ALLCOMP_attributes:: - :: +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: +:: diff --git a/tests/parm/nems.configure.hafs_atm_docn.IN b/tests/parm/nems.configure.hafs_atm_docn.IN index a19713c65e..299bf98bf3 100644 --- a/tests/parm/nems.configure.hafs_atm_docn.IN +++ b/tests/parm/nems.configure.hafs_atm_docn.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN @@ -14,6 +15,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] MED_attributes:: Verbosity = 1 Diagnostic = 0 @@ -31,6 +33,7 @@ MED_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 1 Diagnostic = 0 @@ -39,6 +42,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 1 Diagnostic = 0 diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/nems.configure.hafs_atm_ocn.IN index b130b21b2e..7365893747 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN @@ -14,6 +15,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] MED_attributes:: Verbosity = 1 Diagnostic = 0 @@ -31,6 +33,7 @@ MED_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 1 Diagnostic = 0 @@ -44,6 +47,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 1 Diagnostic = 0 diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index d3eca0d93a..1953903040 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN WAV @@ -14,6 +15,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] MED_attributes:: Verbosity = 0 Diagnostic = 0 @@ -32,6 +34,7 @@ MED_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 Diagnostic = 0 @@ -45,6 +48,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 Diagnostic = 0 @@ -74,6 +78,7 @@ OCN_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 Diagnostic = 0 diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index 629deefec7..dce5544c31 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM WAV @@ -14,6 +15,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] MED_attributes:: Verbosity = 0 Diagnostic = 0 @@ -31,6 +33,7 @@ MED_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 Diagnostic = 0 @@ -41,36 +44,10 @@ ATM_attributes:: write_restart_at_endofrun = .true. :: -# OCN # -OCN_attributes:: - Verbosity = 0 - Diagnostic = 0 - cdf_impexp_freq = 3 - cpl_hour = 0 - cpl_min = 0 - cpl_sec = @[coupling_interval_sec] - base_dtg = @[SYEAR]@[SMONTH]@[SDAY]@[SHOUR] - merge_import = .true. - skip_first_import = .true. - hycom_arche_output = .false. - hyc_esmf_exp_output = .true. - hyc_esmf_imp_output = .true. - import_diagnostics = .false. - import_setting = flexible - hyc_impexp_file = nems.configure - espc_show_impexp_minmax = .true. - ocean_start_dtg = @[OCEAN_START_DTG] - start_hour = 0 - start_min = 0 - start_sec = 0 - end_hour = @[FHMAX] - end_min = 0 - end_sec = 0 -:: - # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 Diagnostic = 0 diff --git a/tests/parm/nems.configure.leapfrog_atm_wav.IN b/tests/parm/nems.configure.leapfrog_atm_wav.IN index d2f3ab5227..d66f4b0700 100644 --- a/tests/parm/nems.configure.leapfrog_atm_wav.IN +++ b/tests/parm/nems.configure.leapfrog_atm_wav.IN @@ -4,6 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: ATM WAV @@ -14,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = false @@ -22,6 +24,7 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: diff --git a/tests/rt.conf b/tests/rt.conf index 152fc18354..19b109adae 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=MS2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +COMPILE | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | RUN | cpld_control_p8_mixedmode | | fv3 | COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | RUN | cpld_control_gfsv17 | - wcoss2.intel | fv3 | @@ -51,7 +51,7 @@ RUN | control_latlon RUN | control_wrtGauss_netcdf_parallel | | fv3 | RUN | control_c48 | | fv3 | RUN | control_c192 | | fv3 | -RUN | control_c384 | | fv3 | +RUN | control_c384 | - cheyenne.intel | fv3 | RUN | control_c384gdas | | fv3 | RUN | control_stochy | | fv3 | RUN | control_stochy_restart | | | control_stochy diff --git a/tests/rt.ncar.sh b/tests/rt.ncar.sh index 073df17d1a..22c5fde1bc 100755 --- a/tests/rt.ncar.sh +++ b/tests/rt.ncar.sh @@ -444,7 +444,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220109 +BL_DATE=20230119 RTPWD=${RTPWD:-$DISKNM/NCAR/main-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt.sh b/tests/rt.sh index 2700a22638..4a86089fc6 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -443,7 +443,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20221220 +BL_DATE=20230103 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index be98d44cbc..ec2594beec 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -38,39 +38,43 @@ function compute_petbounds_and_tasks() { # ATM ATM_io_tasks=${ATM_io_tasks:-0} if [[ $((ATM_compute_tasks + ATM_io_tasks)) -gt 0 ]]; then - atm_petlist_bounds="${n} $((n + ATM_compute_tasks + ATM_io_tasks -1))" - n=$((n + ATM_compute_tasks + ATM_io_tasks)) + atm_petlist_bounds="${n} $((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks - 1))" + n=$((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks)) fi # OCN if [[ ${OCN_tasks:-0} -gt 0 ]]; then + OCN_tasks=$((OCN_tasks * ocn_omp_num_threads)) ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" n=$((n + OCN_tasks)) fi # ICE if [[ ${ICE_tasks:-0} -gt 0 ]]; then + ICE_tasks=$((ICE_tasks * ice_omp_num_threads)) ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" n=$((n + ICE_tasks)) fi # WAV if [[ ${WAV_tasks:-0} -gt 0 ]]; then + WAV_tasks=$((WAV_tasks * wav_omp_num_threads)) wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" n=$((n + WAV_tasks)) fi # CHM - chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + chm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" # MED - med_petlist_bounds="0 $((ATM_compute_tasks - 1))" + med_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" # AQM - aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" - # LND + # LND if [[ ${LND_tasks:-0} -gt 0 ]]; then + LND_tasks=$((LND_tasks * lnd_omp_num_threads)) lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" n=$((n + LND_tasks)) fi diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 7bfc508023..d7d649191b 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -72,7 +72,6 @@ export atm_model='fv3' export chm_model='gocart' export coupling_interval_sec=${DT_ATMOS} -export TASKS=${TASKS_atmaero} export INPES=${INPES_atmaero} export JNPES=${JNPES_atmaero} export WRTTASK_PER_GROUP=${WPG_atmaero} diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index e7b40ce5cf..84fb481979 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -61,11 +61,10 @@ export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. -export THRD=2 -export TASKS=$TASKS_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 + +export atm_omp_num_threads=2 # P7 default export IALB=2 diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav index 99bb848da8..46239320f7 100644 --- a/tests/tests/control_atmwav +++ b/tests/tests/control_atmwav @@ -69,10 +69,9 @@ export FHMAX=12 export WW3RSTDTHR=3 export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export TASKS=$TASKS_cpl_atmw export INPES=$INPES_cpl_atmw export JNPES=$JNPES_cpl_atmw -export THRD=$THRD_cpl_atmw +export atm_omp_num_threads=$THRD_cpl_atmw export WRTTASK_PER_GROUP=$WPG_cpl_atmw WAV_tasks=${WAV_tasks_atmw} diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index 3ccd93b8b4..16af34ee94 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -18,7 +18,6 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 -export TASKS=204 export INPES=4 export WRTTASK_PER_GROUP=12 export NPZ=127 diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 6ca93eb0ab..ac592a9289 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -18,8 +18,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF12" export_fv3 -export TASKS=${TASKS_c384} -export THRD=${THRD_c384} +export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 @@ -53,3 +52,6 @@ export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control.nml.IN + +if [[ $MACHINE_ID = gaea.* || $MACHINE_ID = cheyenne.* ]]; then TPN=18 +fi diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index b051fb7bf1..69271526ad 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -50,8 +50,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/sfc_data.tile6.nc" export_fv3 -export TASKS=${TASKS_c384} -export THRD=${THRD_c384} +export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 @@ -95,3 +94,7 @@ export MODEL_INITIALIZATION=true export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control_gdas.nml.IN + +if [[ $MACHINE_ID = gaea.* || $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi \ No newline at end of file diff --git a/tests/tests/control_c384gdas_debug b/tests/tests/control_c384gdas_debug index 3f883ef459..c460b6ff84 100644 --- a/tests/tests/control_c384gdas_debug +++ b/tests/tests/control_c384gdas_debug @@ -46,8 +46,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/sfc_data.tile6.nc" export_fv3 -export TASKS=${TASKS_c384} -export THRD=${THRD_c384} + +export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav index f40521a9e6..1ad9d14047 100644 --- a/tests/tests/control_c384gdas_wav +++ b/tests/tests/control_c384gdas_wav @@ -61,10 +61,9 @@ export NPX=385 export NPY=385 export DT_ATMOS=225 -export TASKS=$TASKS_cpl_atmw_gdas export INPES=$INPES_cpl_atmw_gdas export JNPES=$JNPES_cpl_atmw_gdas -export THRD=$THRD_cpl_atmw_gdas +export atm_omp_num_threads=$THRD_cpl_atmw_gdas export WRTTASK_PER_GROUP=$WPG_cpl_atmw_gdas WAV_tasks=${WAV_tasks_atmw_gdas} diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index b0d02e4533..62e27129d7 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -46,7 +46,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/sfc_data.tile6.nc" export_fv3 -export TASKS=8 + export INPES=1 export JNPES=1 export WRTTASK_PER_GROUP=2 diff --git a/tests/tests/control_c768 b/tests/tests/control_c768 index 4d69d61a80..69a760e955 100644 --- a/tests/tests/control_c768 +++ b/tests/tests/control_c768 @@ -18,10 +18,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF03" export_fv3 -export TASKS=${TASKS_c768} + export INPES=${INPES_c768} export JNPES=${JNPES_c768} -export THRD=${THRD_c768} +export atm_omp_num_threads=${THRD_c768} export WRITE_GROUP=2 export WRTTASK_PER_GROUP=80 export FHMAX=03 diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 60c9418e5f..3202105035 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -219,7 +219,6 @@ export lnd_model="noahmp" export CPLMODE="nems_frac" export RUNTYPE="startup" export READRESTART=.false. -export TASKS=294 export ATM_tasks=144 export OCN_tasks=0 export ICE_tasks=0 diff --git a/tests/tests/control_rrtmgp_2threads b/tests/tests/control_rrtmgp_2threads index 6e71ef2481..8c97152aa8 100644 --- a/tests/tests/control_rrtmgp_2threads +++ b/tests/tests/control_rrtmgp_2threads @@ -26,8 +26,7 @@ export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index bbe8ab2f1a..d0d9f2206f 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -63,15 +63,20 @@ export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_thrd export INPES=$INPES_cpl_thrd export JNPES=$JNPES_cpl_thrd -export THRD=$THRD_cpl_thrd -export WRTTASK_PER_GROUP=$WPG_cpl_thrd +export WRTTASK_PER_GROUP=$(( WPG_cpl_thrd * THRD_cpl_thrd )) -OCN_tasks=$OCN_tasks_cpl_thrd -ICE_tasks=$ICE_tasks_cpl_thrd -WAV_tasks=$WAV_tasks_cpl_thrd +export OCN_tasks=${OCN_tasks_cpl_thrd} +export ICE_tasks=${ICE_tasks_cpl_thrd} +export WAV_tasks=${WAV_tasks_cpl_thrd} + +export atm_omp_num_threads=$THRD_cpl_thrd +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads +export ocn_omp_num_threads=$OCN_thrds_cpl_thrd +export ice_omp_num_threads=$ICE_thrds_cpl_thrd +export wav_omp_num_threads=$WAV_thrds_cpl_thrd export NPROC_ICE=${ICE_tasks} export np2=`expr $NPROC_ICE / 2` diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index f3b33e65b9..992a53d3e9 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -74,18 +74,15 @@ export DOMAINS_STACK_SIZE=16000000 export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export TASKS=$TASKS_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=1 -export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_bmrk )) export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) export WRITE_DOPOST=.true. export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} -export OCN_tasks=$(( OCN_tasks_cpl_bmrk * OCN_thrds_cpl_bmrk )) -export ICE_tasks=$(( ICE_tasks_cpl_bmrk * ICE_thrds_cpl_bmrk )) -export WAV_tasks=$(( WAV_tasks_cpl_bmrk * WAV_thrds_cpl_bmrk )) +export OCN_tasks=${OCN_tasks_cpl_bmrk} +export ICE_tasks=${ICE_tasks_cpl_bmrk} +export WAV_tasks=${WAV_tasks_cpl_bmrk} export atm_omp_num_threads=$THRD_cpl_bmrk export chm_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index bf21d7b898..0837666183 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -29,10 +29,8 @@ export DOMAINS_STACK_SIZE=16000000 export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export TASKS=$TASKS_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk export WRITE_DOPOST=.true. export WRTTASK_PER_GROUP=$WPG_cpl_bmrk @@ -40,6 +38,13 @@ OCN_tasks=$OCN_tasks_cpl_bmrk ICE_tasks=$ICE_tasks_cpl_bmrk WAV_tasks=$WAV_tasks_cpl_bmrk +export atm_omp_num_threads=$THRD_cpl_bmrk +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads +export ocn_omp_num_threads=$OCN_thrds_cpl_bmrk +export ice_omp_num_threads=$ICE_thrds_cpl_bmrk +export wav_omp_num_threads=$WAV_thrds_cpl_bmrk + # atm/ocn/ice resolution export ATMRES=C384 export NPX=385 diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index c79dfc4e03..b0548dc229 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -68,17 +68,19 @@ export FHZERO=3 export DOMAINS_STACK_SIZE=16000000 -export TASKS=$TASKS_cpl_c192 export INPES=$INPES_cpl_c192 export JNPES=$JNPES_cpl_c192 -export THRD=$THRD_cpl_c192 -export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRTTASK_PER_GROUP=$(( WPG_cpl_c192 * THRD_cpl_c192 )) export WLCLK=${WLCLK_cpl_c192:-$WLCLK} OCN_tasks=$OCN_tasks_cpl_c192 ICE_tasks=$ICE_tasks_cpl_c192 WAV_tasks=$WAV_tasks_cpl_c192 +export atm_omp_num_threads=$THRD_cpl_c192 +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads + # atm/ocn/ice resolution export ATMRES=C192 export NPX=193 @@ -132,3 +134,7 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export CDMBWD=${CDMBWD_c192} export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index d50667a783..024c7be134 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -59,10 +59,9 @@ export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_c48 export INPES=$INPES_cpl_c48 export JNPES=$JNPES_cpl_c48 -export THRD=$THRD_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 export WRTTASK_PER_GROUP=$WPG_cpl_c48 export OUTPUT_GRID='cubed_sphere_grid' diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index be90acc394..ff1724088a 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -77,13 +77,12 @@ export OUTPUT_FH='0 21 24' export INPES=$INPES_cpl_dflt export JNPES=$JNPES_cpl_dflt -export THRD=$THRD_cpl_dflt +export atm_omp_num_threads=$THRD_cpl_dflt export WRTTASK_PER_GROUP=$WPG_cpl_dflt OCN_tasks=$OCN_tasks_cpl_dflt ICE_tasks=$ICE_tasks_cpl_dflt export WAV_tasks=0 -export TASKS=$(( INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks + WAV_tasks )) export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 97182b8d52..1c8f3c77fb 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -63,10 +63,9 @@ export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_dcmp export INPES=$INPES_cpl_dcmp export JNPES=$JNPES_cpl_dcmp -export THRD=$THRD_cpl_dcmp +export atm_omp_num_threads=$THRD_cpl_dcmp export WRTTASK_PER_GROUP=$WPG_cpl_dcmp OCN_tasks=$OCN_tasks_cpl_dcmp diff --git a/tests/tests/cpld_esmfthreads_p8 b/tests/tests/cpld_esmfthreads_p8 index 0fbbd3e0ff..b138d6a959 100644 --- a/tests/tests/cpld_esmfthreads_p8 +++ b/tests/tests/cpld_esmfthreads_p8 @@ -60,21 +60,16 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN - export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_thrd export INPES=$INPES_cpl_thrd export JNPES=$JNPES_cpl_thrd -export THRD=1 -export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_thrd )) export WRTTASK_PER_GROUP=$(( WPG_cpl_thrd * THRD_cpl_thrd )) -export OCN_tasks=$(( OCN_tasks_cpl_thrd * OCN_thrds_cpl_thrd )) -export ICE_tasks=$(( ICE_tasks_cpl_thrd * ICE_thrds_cpl_thrd )) -export WAV_tasks=$(( WAV_tasks_cpl_thrd * WAV_thrds_cpl_thrd )) +export OCN_tasks=${OCN_tasks_cpl_thrd} +export ICE_tasks=${ICE_tasks_cpl_thrd} +export WAV_tasks=${WAV_tasks_cpl_thrd} export atm_omp_num_threads=$THRD_cpl_thrd export chm_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 8657a7b757..e062bc8104 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -63,10 +63,9 @@ export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_mpi export INPES=$INPES_cpl_mpi export JNPES=$JNPES_cpl_mpi -export THRD=$THRD_cpl_mpi +export atm_omp_num_threads=$THRD_cpl_mpi export WRTTASK_PER_GROUP=$WPG_cpl_mpi OCN_tasks=$OCN_tasks_cpl_mpi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 6a564e3eae..f5f4315d3e 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -77,18 +77,15 @@ export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( $ export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" -export TASKS=$TASKS_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=1 -export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_bmrk )) export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) export WRITE_DOPOST=.true. export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} -export OCN_tasks=$(( OCN_tasks_cpl_bmrk * OCN_thrds_cpl_bmrk )) -export ICE_tasks=$(( ICE_tasks_cpl_bmrk * ICE_thrds_cpl_bmrk )) -export WAV_tasks=$(( WAV_tasks_cpl_bmrk * WAV_thrds_cpl_bmrk )) +export OCN_tasks=${OCN_tasks_cpl_bmrk} +export ICE_tasks=${ICE_tasks_cpl_bmrk} +export WAV_tasks=${WAV_tasks_cpl_bmrk} export atm_omp_num_threads=$THRD_cpl_bmrk export chm_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 14db0a6dc3..ff5a455655 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -73,16 +73,18 @@ export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} export DOMAINS_STACK_SIZE=16000000 -export TASKS=$TASKS_cpl_c192 export INPES=$INPES_cpl_c192 export JNPES=$JNPES_cpl_c192 -export THRD=$THRD_cpl_c192 export WRTTASK_PER_GROUP=$WPG_cpl_c192 OCN_tasks=$OCN_tasks_cpl_c192 ICE_tasks=$ICE_tasks_cpl_c192 WAV_tasks=$WAV_tasks_cpl_c192 +export atm_omp_num_threads=$THRD_cpl_c192 +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads + # atm/ocn/ice resolution export ATMRES=C192 export NPX=193 @@ -157,3 +159,7 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index 3f36b090f4..59d8379994 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -75,10 +75,9 @@ export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export TASKS=$TASKS_cpl_c48 export INPES=$INPES_cpl_c48 export JNPES=$JNPES_cpl_c48 -export THRD=$THRD_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 export WRTTASK_PER_GROUP=$WPG_cpl_c48 export OUTPUT_GRID='cubed_sphere_grid' diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 7c9d6a6de2..4d9348000e 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -71,10 +71,9 @@ export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH="3 -1" export FHZERO=3 -export TASKS=$TASKS_cpl_c48 export INPES=$INPES_cpl_c48 export JNPES=$JNPES_cpl_c48 -export THRD=$THRD_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 export WRTTASK_PER_GROUP=$WPG_cpl_c48 export OUTPUT_GRID='cubed_sphere_grid' diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 index 736242d17c..a05e435248 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3 +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -43,7 +43,6 @@ export lnd_model="noahmp" export CPLMODE="nems_orig_data" export RUNTYPE="startup" export READRESTART=.false. -export TASKS=288 export ATM_compute_tasks=144 export OCN_tasks=0 export ICE_tasks=0 diff --git a/tests/tests/datm_cdeps_lnd_gswp3_rst b/tests/tests/datm_cdeps_lnd_gswp3_rst index a6a6afa898..8c91f1e2aa 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3_rst +++ b/tests/tests/datm_cdeps_lnd_gswp3_rst @@ -45,7 +45,6 @@ export lnd_model="noahmp" export CPLMODE="nems_orig_data" export RUNTYPE="continue" export READRESTART=.false. -export TASKS=288 export ATM_compute_tasks=144 export OCN_tasks=0 export ICE_tasks=0 diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index 535bdd1ca2..e7f620a2a1 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -24,8 +24,6 @@ export RESTART_N=${FHMAX} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' -export TASKS=$TASKS_cdeps_025 - ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} OCN_tasks=${OCN_tasks_cdeps_025} ICE_tasks=${ICE_tasks_cdeps_025} diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 8c4ef0ad31..ca67a9ecf3 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -32,8 +32,6 @@ export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" -export TASKS=$TASKS_cdeps_025 - ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} OCN_tasks=${OCN_tasks_cdeps_025} ICE_tasks=${ICE_tasks_cdeps_025} diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index 18929d1081..0e705f870a 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -19,8 +19,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=240 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index 2aea22e30e..6dac3d6d45 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -30,8 +30,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=420 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -180,3 +179,6 @@ export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/hafs_global_storm_following_1nest_atm b/tests/tests/hafs_global_storm_following_1nest_atm index 26f6655736..cffe0f361a 100644 --- a/tests/tests/hafs_global_storm_following_1nest_atm +++ b/tests/tests/hafs_global_storm_following_1nest_atm @@ -19,8 +19,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=240 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index c36f21e0fa..5563c36217 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -19,8 +19,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=180 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm index fb29fa47ca..0e057a77c2 100644 --- a/tests/tests/hafs_regional_atm +++ b/tests/tests/hafs_regional_atm @@ -18,8 +18,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=300 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn index 51d0eae92d..b372f50f45 100644 --- a/tests/tests/hafs_regional_atm_ocn +++ b/tests/tests/hafs_regional_atm_ocn @@ -22,7 +22,6 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=360 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 1963fe3589..251dbbaba5 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -24,7 +24,6 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=420 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_atm_thompson_gfdlsf b/tests/tests/hafs_regional_atm_thompson_gfdlsf index c9d3915bef..530d7c8683 100644 --- a/tests/tests/hafs_regional_atm_thompson_gfdlsf +++ b/tests/tests/hafs_regional_atm_thompson_gfdlsf @@ -17,8 +17,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=300 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=180 export DT_INNER=${DT_ATMOS} export IDEFLATE=1 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 1bcfe04e2d..73830aba29 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -22,7 +22,6 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=360 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_datm_cdeps b/tests/tests/hafs_regional_datm_cdeps index 446ecdf10a..ba2d34824b 100644 --- a/tests/tests/hafs_regional_datm_cdeps +++ b/tests/tests/hafs_regional_datm_cdeps @@ -19,7 +19,6 @@ export_hafs_datm_cdeps export FHMAX=24 export RESTART_N=${FHMAX} -export TASKS=120 export CPLWAV=.false. export OCEAN_START_DTG=43340.00000 export DOCN_CDEPS=false diff --git a/tests/tests/hafs_regional_docn b/tests/tests/hafs_regional_docn index 8b438b42a4..f57dff0fab 100644 --- a/tests/tests/hafs_regional_docn +++ b/tests/tests/hafs_regional_docn @@ -22,7 +22,6 @@ export_hafs_docn_cdeps export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=360 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst index 5d45a1e559..457172714e 100644 --- a/tests/tests/hafs_regional_docn_oisst +++ b/tests/tests/hafs_regional_docn_oisst @@ -22,7 +22,6 @@ export_hafs_docn_cdeps export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=360 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm index 64ebb9a0f4..7b66095f09 100644 --- a/tests/tests/hafs_regional_specified_moving_1nest_atm +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -21,8 +21,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=180 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm index c42a898371..4ed5495ad6 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -19,8 +19,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=180 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn index 711f694489..d1fe55ad09 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn @@ -22,8 +22,6 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=240 -export THRD=2 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -34,7 +32,7 @@ export SDAY=25 export SHOUR=12 export SMONTH=08 export SYEAR=2020 -export WRTTASK_PER_GROUP=60 +export WRTTASK_PER_GROUP=120 export OUTPUT_GRID='regional_latlon' export CEN_LON=-86.3 @@ -97,8 +95,6 @@ export NPY_NEST02=361 export K_SPLIT_NEST02=4 export N_SPLIT_NEST02=5 -ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) - export FHCYC=0 export FHSWR=1800 export FHLWR=1800 @@ -122,7 +118,14 @@ export OCEAN_START_DTG=43702.50000 export atm_model="fv3" export ocn_model="hycom" + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) OCN_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 + export coupling_interval_sec=360 export MESH_ATM="unset" 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 55e8ecbc9b..e9a80d5d3c 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav @@ -24,8 +24,6 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=300 -export THRD=2 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -103,8 +101,6 @@ export NPY_NEST02=361 export K_SPLIT_NEST02=4 export N_SPLIT_NEST02=5 -ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) - export FHCYC=0 export FHSWR=1800 export FHLWR=1800 @@ -147,8 +143,16 @@ export OCEAN_START_DTG=43702.50000 export atm_model="fv3" export ocn_model="hycom" export wav_model="ww3" + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) OCN_tasks=60 WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 + export coupling_interval_sec=360 export MESH_ATM="unset" diff --git a/tests/tests/hafs_regional_telescopic_2nests_atm b/tests/tests/hafs_regional_telescopic_2nests_atm index a79c0bd0b5..033769df84 100644 --- a/tests/tests/hafs_regional_telescopic_2nests_atm +++ b/tests/tests/hafs_regional_telescopic_2nests_atm @@ -21,8 +21,7 @@ export_hafs export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=240 -export THRD=2 +export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index 0062fce796..c72f83b624 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -68,8 +68,7 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index 407b03f63f..bb84ddc128 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -69,8 +69,7 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index 2ffdf3e4b2..b486475785 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -68,8 +68,7 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 21 24' -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 index 9f8ff2b06d..e9e6bfde26 100644 --- a/tests/tests/rap_2threads_dyn32_phy32 +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -69,8 +69,7 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=24 -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/regional_2dwrtdecomp b/tests/tests/regional_2dwrtdecomp index f8ca332206..e8aa94b004 100644 --- a/tests/tests/regional_2dwrtdecomp +++ b/tests/tests/regional_2dwrtdecomp @@ -37,7 +37,6 @@ export FIELD_TABLE=field_table_regional export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="3 -1" diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index 3c1c261042..e705ab6747 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -36,12 +36,10 @@ export FIELD_TABLE=field_table_regional export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 +export atm_omp_num_threads=2 export OUTPUT_FH="3 -1" WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 - -export THRD=2 diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 9b79293260..497025ec28 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -65,7 +65,6 @@ export FNVETC="'C775.vegetation_type.tileX.nc'" export FNSOTC="'C775.soil_type.tileX.nc'" export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" -export TASKS=${TASKS_aqm} export INPES=${INPES_aqm} export JNPES=${JNPES_aqm} export NTILES=1 diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 719cf6c571..b771905463 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -18,7 +18,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/fv_srf_wnd.res.tile1.nc \ RESTART/fv_tracer.res.tile1.nc \ RESTART/phy_data.nc \ - RESTART/sfc_data.nc" + RESTART/sfc_data.nc" export_fv3 @@ -64,7 +64,6 @@ export FNVETC="'C775.vegetation_type.tileX.nc'" export FNSOTC="'C775.soil_type.tileX.nc'" export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" -export TASKS=${TASKS_aqm} export INPES=${INPES_aqm} export JNPES=${JNPES_aqm} export NTILES=1 diff --git a/tests/tests/regional_control b/tests/tests/regional_control index b4f036f67c..98d50028e7 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -37,7 +37,6 @@ export FIELD_TABLE=field_table_regional export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="3 -1" diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 927e478593..b70749183c 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -30,7 +30,6 @@ export FIELD_TABLE=field_table_regional export WLCLK=30 export FHMAX=1 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="0 1" diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp index 8e5fb63432..55566313b2 100644 --- a/tests/tests/regional_decomp +++ b/tests/tests/regional_decomp @@ -37,7 +37,6 @@ export FIELD_TABLE=field_table_regional export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=11 export JNPES=10 export OUTPUT_FH="3 -1" diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index 02da15f5f0..0f20b07d94 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -32,7 +32,6 @@ export IDEFLATE=1 export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="3 -1" diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt index 860e5fd6b0..a87447702b 100644 --- a/tests/tests/regional_noquilt +++ b/tests/tests/regional_noquilt @@ -33,7 +33,6 @@ export FIELD_TABLE=field_table_regional export WLCLK=15 export FHMAX=6 -export TASKS=110 export INPES=10 export JNPES=11 export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index ac7e55c2c5..6ce9242440 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -39,7 +39,6 @@ export NA_INIT=0 export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="4 6" diff --git a/tests/tests/regional_rrfs_a b/tests/tests/regional_rrfs_a index 91172c57a5..f1b6d09d93 100644 --- a/tests/tests/regional_rrfs_a +++ b/tests/tests/regional_rrfs_a @@ -31,7 +31,6 @@ export FIELD_TABLE=field_table_regional_rrfs_a export WLCLK=15 export FHMAX=1 -export TASKS=496 export INPES=30 export JNPES=16 WRITE_GROUP=1 diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb index c54951f1a2..830886bc27 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb +++ b/tests/tests/regional_spp_sppt_shum_skeb @@ -42,8 +42,7 @@ export SFCLAY_COMPUTE_FLUX=.true. export INPES=15 export JNPES=12 export FHMAX=1 -export THRD=2 -export TASKS=192 +export atm_omp_num_threads=2 export WRITE_GROUP=1 export WRTTASK_PER_GROUP=12 NTILES=1 diff --git a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 index 42bd8027a2..9431e9b26a 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 +++ b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 @@ -42,8 +42,7 @@ export SFCLAY_COMPUTE_FLUX=.true. export INPES=15 export JNPES=12 export FHMAX=1 -export THRD=2 -export TASKS=192 +export atm_omp_num_threads=2 export WRITE_GROUP=1 export WRTTASK_PER_GROUP=12 NTILES=1 diff --git a/tests/tests/regional_wofs b/tests/tests/regional_wofs index ef724b516a..d1ee23a786 100644 --- a/tests/tests/regional_wofs +++ b/tests/tests/regional_wofs @@ -36,7 +36,6 @@ export DIAG_TABLE=diag_table_lam export WLCLK=15 export FHMAX=6 -export TASKS=120 export INPES=10 export JNPES=11 export OUTPUT_FH="3 -1" diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads index b3aceed767..77a147a665 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_conus13km_hrrr_warm_2threads @@ -36,8 +36,7 @@ export OUTPUT_HISTORY=.true. export OUTPUT_GRID=lambert_conformal export OUTPUT_FILE="'netcdf'" -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads index 890e096352..32b5cbd374 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads @@ -38,8 +38,7 @@ export OUTPUT_HISTORY=.true. export OUTPUT_GRID=lambert_conformal export OUTPUT_FILE="'netcdf'" -export THRD=2 -export TASKS=$TASKS_thrd +export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6